diff options
author | Sam Chudnick <sam@chudnick.com> | 2021-11-06 20:25:45 -0400 |
---|---|---|
committer | Sam Chudnick <sam@chudnick.com> | 2021-11-06 20:25:45 -0400 |
commit | 82df70eff06e7b44ee84283070d7f801f7fc1d92 (patch) | |
tree | d17ea9cc6e012b16ff0cdeffcf4a97b5e5cd2d11 /.config/zsh/.zprofile |
initial commit
Diffstat (limited to '.config/zsh/.zprofile')
-rw-r--r-- | .config/zsh/.zprofile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/zsh/.zprofile b/.config/zsh/.zprofile new file mode 100644 index 0000000..59a6032 --- /dev/null +++ b/.config/zsh/.zprofile | |||
@@ -0,0 +1,19 @@ | |||
1 | #!/bin/zsh | ||
2 | # Profile file - executed by login shells | ||
3 | |||
4 | export PATH=$PATH:~/.local/bin:~/.local/bin/cryptusb:~/.local/bin/private:~/.local/bin/statusbar:~/.local/bin/theme:~/.local/bin/cmus:~/.local/bin/dmenu:~/.local/bin/backups:~/.local/bin/backups/borg | ||
5 | export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' | ||
6 | export LESSHISTFILE='-' | ||
7 | export XDG_CACHE_HOME="$HOME/.cache" | ||
8 | export XDG_CONFIG_HOME="$HOME/.config" | ||
9 | export XDG_DATA_HOME="$HOME/.local/share" | ||
10 | export XINITRC="$XDG_CONFIG_HOME/x11/xinitrc" | ||
11 | export WGETRC="$XDG_CONFIG_HOME/wget/wgetrc" | ||
12 | export ZDOTDIR="$XDG_CONFIG_HOME/zsh" | ||
13 | |||
14 | export BROWSER="firefox" | ||
15 | export EDITOR="vim" | ||
16 | export TERMINAL="urxvtc" | ||
17 | |||
18 | eval `ssh-agent -s` | ||
19 | [ "$(tty)" = "/dev/tty1" ] && startx "$XINITRC" | ||