Skip to content

Instantly share code, notes, and snippets.

@a-mhamdi
Last active May 17, 2024 11:57
Show Gist options
  • Save a-mhamdi/68a874fb9c43b8e42b0cf652a761a344 to your computer and use it in GitHub Desktop.
Save a-mhamdi/68a874fb9c43b8e42b0cf652a761a344 to your computer and use it in GitHub Desktop.
BASH RC FILE
#-----------------------------#
# CONFIGURATION FILE FOR BASH #
#-----------------------------#
# 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.
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
## Enable programmable completion features
. /etc/bash.bashrc
PS1='\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
# colored GCC warnings and errors
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment