From 70bc044a10264df8deb81df428dc02476a02445e Mon Sep 17 00:00:00 2001 From: Edward Dorrington Date: Mon, 9 Sep 2024 08:33:02 -0600 Subject: [PATCH] Added asdf plugin for completions --- .zshrc | 3 +-- dorf | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 dorf diff --git a/.zshrc b/.zshrc index 1a04aad..ff8976c 100644 --- a/.zshrc +++ b/.zshrc @@ -14,7 +14,7 @@ case "`uname`" in alias df='df -x squashfs -x tmpfs -x devtmpfs' alias mount='mount -t ext3,ext4,cifs,nfs,nfs4,zfs,vfat,btrfs' alias open=xdg-open - plugins=(battery golang zsh-syntax-highlighting) + plugins=(asdf battery golang zsh-syntax-highlighting) ;; Darwin) test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh" @@ -128,4 +128,3 @@ fi # Remove duplicate entries in the PATH typeset -U path - diff --git a/dorf b/dorf new file mode 100644 index 0000000..312a1f5 --- /dev/null +++ b/dorf @@ -0,0 +1,15 @@ +# bun completions +[ -s "/home/ed/.bun/_bun" ] && source "/home/ed/.bun/_bun" + +# >>> juliaup initialize >>> + +# !! Contents within this block are managed by juliaup !! + +path=('/home/ed/.juliaup/bin' $path) +export PATH + +# <<< juliaup initialize <<< + +# bun +export BUN_INSTALL="$HOME/.bun" +export PATH="$BUN_INSTALL/bin:$PATH"