Bottom (btm) now uses `--theme` instead of `--color` to set the theme. Changed the zsh configuration to reflect this in the new version of bottom.
23 lines
483 B
Plaintext
23 lines
483 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"
|
|
|
|
# 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)"
|