diff options
Diffstat (limited to 'zsh/.zsh/.zprofile')
-rw-r--r-- | zsh/.zsh/.zprofile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/zsh/.zsh/.zprofile b/zsh/.zsh/.zprofile new file mode 100644 index 0000000..13942bb --- /dev/null +++ b/zsh/.zsh/.zprofile @@ -0,0 +1,8 @@ +export EDITOR=vim +export HISTSIZE=1000000 + +# We need to reset $PATH because /etc/profile is read after ~/.zshenv +export PATH="$HOME/bin:$HOME/.guix-profile/bin:$HOME/bin:/usr/lib/surfraw${PATH:+:}$PATH" + +# Start X automatically +[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx |