dotfiles/.profile

19 lines
390 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
2022-09-01 00:55:31 +00:00
export PATH="$HOME/.local/bin:$PATH"
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-"
2022-05-24 08:38:11 +00:00
export LESS="-R -z-2 -j4"
2022-05-24 08:34:52 +00:00
2019-10-21 11:56:15 +00:00
# fix java swing applications
export _JAVA_AWT_WM_NONREPARENTING=1
[ -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