mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
basic dotfiles
This commit is contained in:
commit
2ca33576d6
6 changed files with 185 additions and 0 deletions
21
bashrc
Normal file
21
bashrc
Normal 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"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue