Files
dotfiles/zsh/dot-zshrc
Wesley Irvin 29d3909d0a fzf Integraton
Added in the fzf integrations to .zshrc. If not wanted you can
comment out the line adding in the integrations.
2024-08-04 16:18:30 -04:00

23 lines
482 B
Plaintext

# Our ZSH configuration
############### ALIASES ####################
# Load bottom with the proper color scheme
alias btm="btm --color=gruvbox"
# Remap ls to use lsd
alias ls="lsd"
# 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)"