basic dotfiles

This commit is contained in:
Loic Nageleisen 2011-05-29 13:58:15 +02:00
commit 2ca33576d6
6 changed files with 185 additions and 0 deletions

21
bashrc Normal file
View file

@ -0,0 +1,21 @@
## bashrc
# set a nice prompt
source ~/.bash_prompt
# ignore repeated, space-started, and casual commands
export HISTIGNORE="&:[ ]*:l[sl]:[bf]g:exit"
# enable multiline single command
shopt -s cmdhist
# enable appending to histfile
shopt -s histappend
shopt -s cdspell
# turn off bells
set bell-style none
#alias ls="ls --color"
alias ll="ls -l"
alias top="top -o cpu -s 5"