From 13230c503921f405f8313939ea42b1200d935f12 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Sat, 8 Jul 2017 23:18:47 +0100 Subject: [PATCH] Remove bashrc --- .bashrc | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .bashrc diff --git a/.bashrc b/.bashrc deleted file mode 100644 index f42ebe8b..00000000 --- a/.bashrc +++ /dev/null @@ -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