From 48e6614a518b84746f6f7665b28fbee305a79df6 Mon Sep 17 00:00:00 2001
From: James Walker <walkah@walkah.net>
Date: Wed, 2 Apr 2025 21:19:57 -0400
Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20zsh:=20add=20python=20plugin?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 chezmoi/dot_zshrc | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/chezmoi/dot_zshrc b/chezmoi/dot_zshrc
index d54742c..c602961 100644
--- a/chezmoi/dot_zshrc
+++ b/chezmoi/dot_zshrc
@@ -4,6 +4,7 @@ export ZSH=$HOME/.oh-my-zsh
 plugins=(
   asdf
   aws
+  bgnotify
   command-not-found
   direnv
   docker
@@ -14,6 +15,7 @@ plugins=(
   git
   github
   mix
+  python
   tmux
   zsh-autosuggestions
 )
@@ -26,6 +28,9 @@ export ASDF_NODEJS_LEGACY_FILE_DYNAMIC_STRATEGY=latest_installed
 zstyle ':omz:plugins:eza' 'git-status' yes
 zstyle ':omz:plugins:eza' 'header' yes
 
+# python plugin config
+export PYTHON_AUTO_VRUN=true
+
 # OH MY ZSH!
 source $ZSH/oh-my-zsh.sh