Added bash config
Copied over old .bashrc and .bash_aliases because they didn't need really need changing Slightly changed .bash_profile for starting graphical setups Added simple starship.toml setup Updated install script to copy/pull new files
This commit is contained in:
16
bash_aliases
Normal file
16
bash_aliases
Normal file
@@ -0,0 +1,16 @@
|
||||
# Alias sudo to have a space at the end so it can be used with other aliases
|
||||
alias sudo='sudo '
|
||||
|
||||
# Auto remove any packages that may be left over as dependencies
|
||||
alias autorem='pacman -Rsn $(pacman -Qdtq)'
|
||||
|
||||
# Enable basic options for colour etc.
|
||||
alias ls='ls -CFlvh --color=always --group-directories-first'
|
||||
alias grep='grep --color=always'
|
||||
alias less='less -R'
|
||||
|
||||
# Neovim instead of vim
|
||||
alias vim='nvim'
|
||||
|
||||
# Out of habit
|
||||
alias quit='exit'
|
||||
Reference in New Issue
Block a user