dotfiles/.profile

23 lines
642 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
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-"
export XDG_CONFIG_HOME="$HOME/.config"
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
2022-09-18 04:25:40 +00:00
export PNPM_HOME="/home/odrling/.local/share/pnpm"
2022-09-25 02:03:55 +00:00
export PATH="$HOME/.local/bin:$HOME/.local/odrbin:$PNPM_HOME:$PATH:$HOME/.luarocks/bin:$HOME/.go/bin"
2022-09-18 04:25:40 +00:00
2022-09-29 02:25:41 +00:00
[ -e "$HOME/.nix-profile/etc/profile.d/nix.sh" ] && . "$HOME/.nix-profile/etc/profile.d/nix.sh"
2019-06-26 21:59:48 +00:00
if [ "$(tty)" = '/dev/tty1' ]; then
pgrep xinit || exec startx
fi