Remove bashrc

master
Pierre Neidhardt 2017-07-08 23:18:47 +01:00
parent 36ee5cd5b2
commit 13230c5039
1 changed files with 0 additions and 19 deletions

19
.bashrc
View File

@ -1,19 +0,0 @@
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
## Shell-independant code: everything we set here must be exported before we run
## our favorite shell.
## Enable color support of ls.
if [ "$TERM" != "dumb" ]; then
if [ "$OSTYPE" = "linux-gnu" ]; then
eval "$(dircolors "$HOME/.dircolorsdb")"
else
export LSCOLORS="Ex"
# export LSCOLORS="ExfxcxDxCxdxdxCxCxECEh"
fi
fi
for shell in fish zsh; do
command -v $shell >/dev/null 2>&1 && exec $shell
done