Skip to content

Commit

Permalink
node upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
theClarkSell committed Mar 7, 2024
1 parent 0926cd7 commit c5c326f
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dotbot
Submodule dotbot updated 108 files
2 changes: 1 addition & 1 deletion nodenv/plugins/node-build
Submodule node-build updated 230 files
2 changes: 1 addition & 1 deletion nodenv/plugins/nodenv-update
Submodule nodenv-update updated 1 files
+2 −2 README.md
2 changes: 1 addition & 1 deletion vim/bundle/nerdcommenter
2 changes: 1 addition & 1 deletion vim/bundle/nerdtree
2 changes: 1 addition & 1 deletion vim/bundle/vim-surround
15 changes: 11 additions & 4 deletions zsh/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,21 @@ ANTIGEN_MUTEX=false
source /opt/homebrew/share/antigen/antigen.zsh
antigen init $HOME/.antigenrc


# initalize completions
fpath=(/usr/local/share/zsh-completions $fpath)
# fpath=(/usr/local/share/zsh-completions $fpath)
if type brew &>/dev/null; then
FPATH=$(brew --prefix)/share/zsh-completions:$FPATH

autoload -Uz compinit
compinit
fi


# loads nodenv
eval "$(nodenv init -)"
# initl python
eval "$(pyenv init --path)"

alias nrs='npm run start:watch:raw'
alias nd='npm run dev'
Expand All @@ -42,9 +52,6 @@ if [ -f '/Users/clarksell/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/clark
if [ -f '/Users/clarksell/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/clarksell/google-cloud-sdk/completion.zsh.inc'; fi

test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh"




# bun completions
[ -s "/Users/csell/.bun/_bun" ] && source "/Users/csell/.bun/_bun"
Expand Down

0 comments on commit c5c326f

Please sign in to comment.