Files
dotfiles/.zshrc
Wesley Irvin 84c87ed22b New File: .zshrc (#1)
Added .zshrc to our dotfiles to be tracked.

Reviewed-on: #1
2024-02-02 01:13:55 +00:00

19 lines
375 B
Bash

# 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 ###############
# Finally we want to use starship for our prompt
# (because rust that's why)
eval "$(starship init zsh)"