dotfiles/dot_zprofile
2020-06-15 03:18:21 -05:00

17 lines
309 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 :