Move profile-local definitions below default values

This commit is contained in:
2020-06-25 23:20:00 +08:00
parent 55c71ac045
commit 6e17df1a6f

View File

@@ -12,9 +12,6 @@ umask 026
# effectively unlimited history # effectively unlimited history
export HISTSIZE=10000000 export HISTSIZE=10000000
# source local variables
[ -f "$HOME/.profile-local" ] && source "$HOME/.profile-local"
[ -f "$HOME/.profile-private" ] && source "$HOME/.profile-private"
# firefox hardware acceleration # firefox hardware acceleration
export MOZ_USE_OMTC=1 export MOZ_USE_OMTC=1
@@ -25,6 +22,13 @@ export MOZ_WEBRENDER=
export VISUAL="vim" export VISUAL="vim"
export EDITOR="vim" export EDITOR="vim"
# source local variables
# will override any variables defined above
[ -f "$HOME/.profile-local" ] && source "$HOME/.profile-local"
[ -f "$HOME/.profile-private" ] && source "$HOME/.profile-private"
# end preferences - switched controls below
# gtk options # gtk options
# enable "command pallete" # enable "command pallete"
export GTK3_MODULES="/usr/lib/x86_64-linux-gnu/libplotinus/libplotinus.so:$GTK3_MODULES" export GTK3_MODULES="/usr/lib/x86_64-linux-gnu/libplotinus/libplotinus.so:$GTK3_MODULES"