Files
dotfiles/zsh/dot-zshrc
Wesley Irvin 3f1a1c1375 Addition of alias for la
Added an alias for `la` to make sure it is available on all systems.
2024-11-17 10:26:52 -05:00

26 lines
540 B
Plaintext

# Our ZSH configuration
############### ALIASES ####################
# Load bottom with the proper color scheme
alias btm="btm --theme=gruvbox"
# Remap ls to use lsd
alias ls="lsd"
# Add alias for la to call lsd -lah
alias la="lsd -lah"
# Replace cat with bat
alias cat="bat"
############### END ALIASES ###############
# Add in our fzf integrations for zsh
# Comment if you don't want the fzf integration
source <(fzf --zsh)
# Finally we want to use starship for our prompt
# (because rust that's why)
eval "$(starship init zsh)"