X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;ds=sidebyside;f=bash%2F.bashrc;fp=bash%2F.bashrc;h=262240a26400d19c04c15eae12d879cfdff5742d;hb=2b5c036e7b5ff45e2eed26dd7ce499c6eaf7bf2f;hp=d9e59b2c92964b995e9d22e2d1b041d7b41a2d9f;hpb=dc625b8703669d44551354eefb0ee3ccadc65ce7;p=max%2Fdotfiles.git diff --git a/bash/.bashrc b/bash/.bashrc index d9e59b2..262240a 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -2,12 +2,6 @@ # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # for examples -# If not running interactively, don't do anything -case $- in - *i*) ;; - *) return;; -esac - # don't put duplicate lines or lines starting with space in the history. # See bash(1) for more options HISTCONTROL=ignoreboth @@ -17,34 +11,16 @@ shopt -s histappend # for setting history length see HISTSIZE and HISTFILESIZE in bash(1) HISTSIZE=1000 -HISTFILESIZE=2000 +HISTFILESIZE=20000 # check the window size after each command and, if necessary, # update the values of LINES and COLUMNS. shopt -s checkwinsize -# make less more friendly for non-text input files, see lesspipe(1) -if [ -x /usr/bin/lesspipe ]; then - export LESSOPEN="|lesspipe %s" -elif [ -x /usr/bin/lesspipe.sh ]; then - export LESSOPEN="|lesspipe %s" -fi - -# set variable identifying the chroot you work in (used in the prompt below) -if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then - debian_chroot=$(cat /etc/debian_chroot) -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' - - if [ -f ~/.bash_aliases ]; then . ~/.bash_aliases fi -eval `dircolors ~/.dir_colors` # enable programmable completion features (you don't need to enable # this, if it's already enabled in /etc/bash.bashrc and /etc/profile @@ -136,3 +112,7 @@ fi export GPG_TTY=($tty) gpg-connect-agent updatestartuptty /bye > /dev/null + +export EDITOR="vim" +export TMPDIR="/home/max/.local/tmp" +eval `dircolors ~/.dir_colors`