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
17 lines
438 B
Bash
17 lines
438 B
Bash
# 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'
|