From 4f376731ab81434686dee553af510f254a691f22 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 11 Jan 2024 14:15:49 -0500 Subject: [PATCH] [zsh] Add a zshrc file --- zsh/.zshrc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 zsh/.zshrc diff --git a/zsh/.zshrc b/zsh/.zshrc new file mode 100644 index 0000000..3074d3f --- /dev/null +++ b/zsh/.zshrc @@ -0,0 +1,15 @@ +# If you come from bash you might have to change your $PATH. +# export PATH=$HOME/bin:/usr/local/bin:$PATH + +export ZSH="$HOME/.oh-my-zsh" + +ZSH_THEME="robbyrussell" + +plugins=(git z asdf direnv emacs yarn) + +source $ZSH/oh-my-zsh.sh + + +# Example aliases +alias dj="poetry run python manage.py $argv" +alias sysu="systemctl --user $argv"