diff options
author | Jonas Smedegaard <dr@jones.dk> | 2024-07-23 08:54:14 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2024-07-23 08:54:14 +0200 |
commit | cd005739d614ca19c54d8c6931109ea1d21b64d9 (patch) | |
tree | 2729d4ad9133e1c671b863382ae77d75dc220ddf /.bashrc | |
parent | 0889305ebe9edbee4851c65980bf9e6253de6caa (diff) |
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -37,7 +37,7 @@ fi # set a fancy prompt (non-color, unless we know we "want" color) case "$TERM" in - xterm-color) color_prompt=yes;; + xterm-color|*-256color) color_prompt=yes;; esac # uncomment for a colored prompt, if the terminal has the capability; turned @@ -84,6 +84,9 @@ if [ -x /usr/bin/dircolors ]; then #alias egrep='egrep --color=auto' fi +# colored GCC warnings and errors +#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' + # some more ls aliases #alias ll='ls -l' #alias la='ls -A' |