#!/bin/bash iatest=$(expr index "$-" i) # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi # Enable bash programmable completion features in interactive shells if [ -f /usr/share/bash-completion/bash_completion ]; then . /usr/share/bash-completion/bash_completion elif [ -f /etc/bash_completion ]; then . /etc/bash_completion fi ####################################################### # EXPORTS ####################################################### # Disable the bell if [[ $iatest > 0 ]]; then bind "set bell-style visible"; fi # Expand the history size export HISTFILESIZE=10000 export HISTSIZE=500 # Don't put duplicate lines in the history and do not add lines that start with a space export HISTCONTROL=erasedups:ignoredups:ignorespace # Check the window size after each command and, if necessary, update the values of LINES and COLUMNS shopt -s checkwinsize # Causes bash to append to history instead of overwriting it so if you start a new terminal, you have old session history shopt -s histappend PROMPT_COMMAND='history -a' # Allow ctrl-S for history navigation (with ctrl-R) stty -ixon # Ignore case on auto-completion # Note: bind used instead of sticking these in .inputrc if [[ $iatest > 0 ]]; then bind "set completion-ignore-case on"; fi # Show auto-completion list automatically, without double tab if [[ $iatest > 0 ]]; then bind "set show-all-if-ambiguous On"; fi # Set the default editor export EDITOR=vi export VISUAL=vi # To have colors for ls and all grep commands such as grep, egrep and zgrep export CLICOLOR=1 export LS_COLORS='no=00:fi=00:di=00;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.ogg=01;35:*.mp3=01;35:*.wav=01;35:*.xml=00;31:' #export GREP_OPTIONS='--color=auto' #deprecated alias grep="/usr/bin/grep $GREP_OPTIONS" unset GREP_OPTIONS # Color for manpages in less makes manpages a little easier to read export LESS_TERMCAP_mb=$'\E[01;31m' export LESS_TERMCAP_md=$'\E[01;31m' export LESS_TERMCAP_me=$'\E[0m' export LESS_TERMCAP_se=$'\E[0m' export LESS_TERMCAP_so=$'\E[01;44;33m' export LESS_TERMCAP_ue=$'\E[0m' export LESS_TERMCAP_us=$'\E[01;32m' ####################################################### # GENERAL ALIASES ####################################################### # To temporarily bypass an alias, we preceed the command with a \ # EG: the ls command is aliased, but to use the normal ls command you would type \ls # Add an "alert" alias for long running commands. Use like so: # sleep 10; alert alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' # Enable git status in prompt source /etc/bash_completion.d/git-prompt export GIT_PS1_SHOWDIRTYSTATE=1 export PS1='\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]$(__git_ps1 "(%s)")\$ ' # Git aliases alias gp='git push' alias gco='git checkout' alias gd='git diff' alias gc='git commit' alias gpl='git pull' alias gs='git status' alias gb='git branch' alias ga='git add' alias gl='git log' # pip scripts PATH=$PATH:~/.local/bin