summaryrefslogtreecommitdiff
path: root/bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc6
1 files changed, 4 insertions, 2 deletions
diff --git a/bashrc b/bashrc
index 242b6e3..7ae9276 100644
--- a/bashrc
+++ b/bashrc
@@ -3,7 +3,9 @@
#{{{ general bash settings
-export TERM=xterm-256color
+if [ "$TERM" == "screen" ]; then export TERM=screen-256color; fi
+if [ "$TERM" == "xterm" ]; then export TERM=xterm-256color; fi
+
# disable sticky mode
stty -ixon
@@ -37,6 +39,6 @@ export PS1="${BCol_DarkRed}::${BCol_DarkOrange}\u${BCol_DarkRed}::${BCol_LightOr
#}}}
#{{{ ls colors
-export LS_COLORS='di=34:ln=96:or=96;41:so=0:pi=0:ex=01;92:bd=0;42:cd=0;42:su=0:sg=0:tw=30;44:ow=30;44'
+export LS_COLORS='di=94:ln=96:or=96;41:so=0:pi=0:ex=01;92:bd=0;42:cd=0;42:su=0:sg=0:tw=30;44:ow=30;44'
#}}}