-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.zshenv
More file actions
21 lines (18 loc) · 706 Bytes
/
.zshenv
File metadata and controls
21 lines (18 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# bin paths
export PATH="$HOME/bin:/usr/local/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/.config/rofi/bin:$PATH"
export PATH="$HOME/.local/share/nvim/mason/bin:$PATH"
export PATH="$HOME/.npm-global/bin:$PATH"
export PATH="$HOME/.local/share/zinit/polaris/bin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
# XDG Base directory specification
export XDG_CONFIG_HOME="$HOME/.config" # Config files
export XDG_CACHE_HOME="$HOME/.cache" # Cache files
export XDG_DATA_HOME="$HOME/.local/share" # Application data
export XDG_STATE_HOME="$HOME/.local/state" # Logs and state files
# Editor preferences
export EDITOR="nvim"
export VISUAL="nvim"
# gpg config
export GPG_TTY=$(tty)