cswimr/home
Archived
Template
1
0
Fork 0

added zsh-nvm and zsh-better-npm-completion as zsh plugins (submodules)

Signed-off-by: Seaswimmer <seaswimmerthefsh@gmail.com>
This commit is contained in:
Seaswimmer 2024-07-13 15:30:23 -04:00
parent 613b4c8dc2
commit 242183cb7f
Signed by: cswimr
GPG key ID: 3813315477F26F82
4 changed files with 15 additions and 1 deletions

8
.zshrc
View file

@ -65,12 +65,18 @@ ZSH_THEME="agnoster"
# Would you like to use another custom folder than $ZSH/custom?
ZSH_CUSTOM=$HOME/.zshc
# zsh-nvm settings
export NVM_COMPLETION=true
export NVM_LAZY_LOAD=true
export NVM_LAZY_LOAD_EXTRA_COMMANDS=('nvim')
export NVM_AUTO_USE=true
# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git colored-man-pages colorize command-not-found cp pyenv pip python virtualenv virtualenvwrapper poetry-env systemd archlinux appup fast-syntax-highlighting)
plugins=(git colored-man-pages colorize command-not-found cp pyenv pip python virtualenv virtualenvwrapper poetry-env systemd archlinux appup zsh-nvm zsh-better-npm-completion fast-syntax-highlighting)
fpath+="${ZSH_CUSTOM:-"$ZSH/custom"}/plugins/zsh-completions/src"
source $ZSH/oh-my-zsh.sh