From 84c87ed22bc478b6313fcb581709eb06f126e789 Mon Sep 17 00:00:00 2001 From: Wesley Irvin Date: Fri, 2 Feb 2024 01:13:55 +0000 Subject: [PATCH] New File: .zshrc (#1) Added .zshrc to our dotfiles to be tracked. Reviewed-on: https://git.wesirvin.com/wesley/dotfiles/pulls/1 --- .zshrc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .zshrc diff --git a/.zshrc b/.zshrc new file mode 100644 index 0000000..3b80835 --- /dev/null +++ b/.zshrc @@ -0,0 +1,18 @@ +# 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)"