mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
21 lines
380 B
Bash
21 lines
380 B
Bash
## 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"
|
|
|