summaryrefslogtreecommitdiff
path: root/dot_zshrc.tmpl
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2025-08-12 14:30:13 -0500
committerIbrahim Muftee <ibrahim@muftee.net>2026-07-01 00:23:31 -0400
commit455d58abf0e8f27cf2c9d966db8c7e7845662eb9 (patch)
tree685457d2bbc24d77da8e3d07c33fe4e6d28b6211 /dot_zshrc.tmpl
parentc288fb0cfa13608a2d702f6dc86109d79399983b (diff)
feat(zsh) add poetry nvim alias
Diffstat (limited to 'dot_zshrc.tmpl')
-rw-r--r--dot_zshrc.tmpl5
1 files changed, 4 insertions, 1 deletions
diff --git a/dot_zshrc.tmpl b/dot_zshrc.tmpl
index 8d677a1..52a37a4 100644
--- a/dot_zshrc.tmpl
+++ b/dot_zshrc.tmpl
@@ -27,7 +27,7 @@ export PATH="$PATH:$HOME/.local/bin"
# Add go binaries to $PATH
export PATH="$PATH:$HOME/go/bin"
-{{- if eq .chezmoi.os "darwin" }}
+{{ if eq .chezmoi.os "darwin" }}
# Add homebrew binaries to path
export PATH=$PATH:/opt/homebrew/bin
{{ end -}}
@@ -165,6 +165,9 @@ alias cdc='$HOME/.local/share/chezmoi/'
# Shortcut for sourcing this file
alias zource='source $HOME/.zshrc'
+# Poetry run Neovim
+alias pn='poetry run nvim .'
+
# Load Starship
eval "$(starship init zsh)"
{{ if eq .chezmoi.os "linux" }}