1
0

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:
2025-09-25 18:08:46 +01:00
parent ffcf0f02c2
commit 42189f6687
5 changed files with 133 additions and 1 deletions

16
bash_aliases Normal file
View 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'