dotfiles/.profile

15 lines
315 B
Plaintext
Raw Normal View History

2019-06-23 16:49:02 +00:00
export BROWSER=firefox
export EDITOR=vi
2019-06-26 21:59:48 +00:00
2019-10-01 07:11:01 +00:00
export PATH="$HOME/.local/bin:$PATH:$HOME/.vim/fzf/bin"
2019-06-26 21:59:48 +00:00
export FZF_DEFAULT_OPTS="-m --no-mouse"
2019-07-07 14:45:38 +00:00
export FZF_DEFAULT_COMMAND="find . -type f | cut -d'/' -f2-"
[ -f ~/.profile.local ] && . ~/.profile.local
2019-08-21 19:36:26 +00:00
2019-06-26 21:59:48 +00:00
if [ "$(tty)" = '/dev/tty1' ]; then
pgrep xinit || exec startx
fi