dotfiles/dot_zprofile
2020-06-08 11:11:42 -05:00

14 lines
298 B
Bash

export PATH="$HOME/.cargo/bin:$PATH"
export TERMINAL="/usr/bin/alacritty"
export EDITOR="/usr/bin/nvim"
# 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 :