forked from logan/dotfiles
Don't export certain bash variables, that's bad for you
This commit is contained in:
parent
519464ad3c
commit
c4dcb5ec86
2 changed files with 5 additions and 5 deletions
2
.bashrc
2
.bashrc
|
@ -26,7 +26,7 @@ export EDITOR=vim
|
|||
export PATH=$PATH:~/.local/bin
|
||||
export HISTSIZE=10000
|
||||
export HISTFILESIZE=20000
|
||||
export PROMPT_COMMAND="history -a; $PROMPT_COMMAND"
|
||||
PROMPT_COMMAND="history -a; $PROMPT_COMMAND"
|
||||
|
||||
export LESS=-R
|
||||
export LESS_TERMCAP_mb=$'\E[1;31m' # begin blink
|
||||
|
|
8
.profile
8
.profile
|
@ -1,4 +1,4 @@
|
|||
export QT_QPA_PLATFORMTHEME=qt5ct
|
||||
export TERMINAL=alacritty
|
||||
export PATH=$PATH:~/.local/bin
|
||||
export SAL_USE_VCLPLUGIN=gtk
|
||||
QT_QPA_PLATFORMTHEME=qt5ct
|
||||
TERMINAL=alacritty
|
||||
PATH=$PATH:~/.local/bin
|
||||
SAL_USE_VCLPLUGIN=gtk
|
||||
|
|
Loading…
Reference in a new issue