diff options
| author | Karel Kočí <cynerd@email.cz> | 2017-05-07 19:29:55 +0200 | 
|---|---|---|
| committer | Karel Kočí <cynerd@email.cz> | 2017-05-07 19:29:55 +0200 | 
| commit | 05882344cc595918cdf07f21dc610c0e57c7f490 (patch) | |
| tree | 7f7983d58fe5c13d48e15618a4d6342220a054f3 | |
| parent | d9fbecd579fc4881b7abffd8aaab06666286dfcf (diff) | |
| download | myconfigs-05882344cc595918cdf07f21dc610c0e57c7f490.tar.gz myconfigs-05882344cc595918cdf07f21dc610c0e57c7f490.tar.bz2 myconfigs-05882344cc595918cdf07f21dc610c0e57c7f490.zip | |
Even more FreeBSD shell exceptions
| -rw-r--r-- | shellrc | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -8,9 +8,10 @@ if [ "$(uname -s)" = "FreeBSD" ]; then  	alias ls='ls -G'  else  	alias ls='ls --color=auto' +	eval $(dircolors -b) +	alias make="make -j$(nproc)"  fi  alias ll='ls -l' -eval $(dircolors -b)  alias grep='grep --color=auto'  alias git='LANG=en_GB git'  alias gdb='gdb -q' @@ -18,7 +19,6 @@ alias cgdb='cgdb -q'  alias octave='octave-cli -q'  alias ssh='TERM="xterm-256color" ssh'  alias feh='feh --magick-timeout 1 -.' -alias make="make -j$(nproc)"  export LESS=-R  export LESS_TERMCAP_mb=$'\E[1;31m' | 
