X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=.bashrc;h=2301b5ea38660eb2dcc2b0218e3044b525427835;hb=9f2faeff19b7695a9abc6bf4360b1e83972ce1a5;hp=d7eb318ece0cdff42c680163ec74867a419fde2d;hpb=40783e3fe075693df89e9f31f703c403afeb5bc6;p=dotfiles.git diff --git a/.bashrc b/.bashrc index d7eb318..2301b5e 100644 --- a/.bashrc +++ b/.bashrc @@ -6,11 +6,22 @@ shopt -s histappend export TERMINAL=urxvtc export EDITOR=vim export TERM=screen -export BROWSER= +export BROWSER=firefox export HISTFILESIZE=10000 export HISTSIZE=100000 export HISTCONTROL=ignoreboth +export SUDO_ASKPASS=/usr/lib/ssh/ssh-askpass + alias ls='ls --color=auto' alias grep='grep --color=auto' +alias vi=vim + +set_prompt(){ + last_c=$? + PS1='\u@\h' + [[ $last_c -ge 1 ]] && PS1="($last_c) $PS1" + PS1="$PS1\w\$ " +} +PROMPT_COMMAND='set_prompt'