.bashrc: Don't export bash-internal vars
This commit is contained in:
parent
a1fbcddac9
commit
92f87bbadd
12
.bashrc
12
.bashrc
|
|
@ -9,17 +9,17 @@
|
||||||
set -o noclobber
|
set -o noclobber
|
||||||
shopt -s checkwinsize
|
shopt -s checkwinsize
|
||||||
shopt -s histappend
|
shopt -s histappend
|
||||||
export HISTCONTROL=ignoreboth
|
HISTCONTROL=ignoreboth
|
||||||
export HISTSIZE=20000
|
HISTSIZE=20000
|
||||||
export HISTFILESIZE=20000
|
HISTFILESIZE=20000
|
||||||
export PROMPT_DIRTRIM=3
|
PROMPT_DIRTRIM=3
|
||||||
|
|
||||||
# Save and display timestamps for history
|
# Save and display timestamps for history
|
||||||
HISTTIMEFORMAT="[%F %T] "
|
HISTTIMEFORMAT="[%F %T] "
|
||||||
|
|
||||||
# Color output and default options
|
# Color output and default options
|
||||||
export GREP_OPTS='--color=auto'
|
GREP_OPTS='--color=auto'
|
||||||
export LS_OPTS='--color=auto -hFN --group-directories-first'
|
LS_OPTS='--color=auto -hFN --group-directories-first'
|
||||||
export LESS="-Ri"
|
export LESS="-Ri"
|
||||||
|
|
||||||
# colored GCC warnings and errors
|
# colored GCC warnings and errors
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue