-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_zprofile.tmpl
32 lines (26 loc) · 1.03 KB
/
dot_zprofile.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# export PATH
export PATH="$PATH:$HOME/bin"
# set xdg configuration directory
export XDG_CONFIG_HOME="$HOME/.config"
# set zellij configuration directory
export ZELLIJ_CONFIG_DIR="$HOME/.config/zellij"
# fzf settings
export FZF_DEFAULT_COMMAND='fd --type f --strip-cwd-prefix'
export FZF_DEFAULT_OPTS='--height 50% --layout=reverse --border'
export FZF_CTRL_T_COMMAND='fd --type f --hidden --follow --exclude .git'
export FZF_CTRL_T_OPTS='--preview "bat --color=always --style=numbers,header,changes,grid --line-range=:500 {}"'
# bat settings
export BAT_THEME="Dracula"
# gpg symmetric encryption
export GPG_TTY=$(tty)
{{ if eq .chezmoi.os "darwin" -}}
# Added by OrbStack: command-line tools and integration
# Comment this line if you don't want it to be added again.
source ~/.orbstack/shell/init.zsh 2>/dev/null || :
{{- if .work -}}
# Added by OrbStack: work-specific command-line tools and integration
export PATH="/opt/homebrew/opt/mysql-client/bin:$PATH"
export VOLTA_HOME="$HOME/.volta"
export PATH="$VOLTA_HOME/bin:$PATH"
{{- end -}}
{{ end -}}