dotfiles/dot_zprofile

15 lines
298 B
Text
Raw Normal View History

2020-05-07 02:20:04 +00:00
export PATH="$HOME/.cargo/bin:$PATH"
2020-06-08 16:11:42 +00:00
export TERMINAL="/usr/bin/alacritty"
export EDITOR="/usr/bin/nvim"
2020-05-07 02:20:04 +00:00
# if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then exec startx; fi
if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]
then
export MOZ_ENABLE_WAYLAND=1
exec sway
fi
# vim: set ft=zsh :