Drop zsh plugins from installer

Same deal as fzf, moving away from installing these things as part of
the installer and favoring a version installed by the operating system's
package manager
This commit is contained in:
Josh Sherman 2022-02-27 13:44:15 -06:00
parent 703768d712
commit 432ba3144e
No known key found for this signature in database
GPG key ID: 55B058A80530EF22
2 changed files with 5 additions and 21 deletions

View file

@ -1,8 +1,5 @@
#!/usr/bin/env zsh
export DOTFILES=$HOME/.dotfiles
export INCLUDES=$HOME/.local/share/dotfiles
# Speed up `brew install`
export HOMEBREW_NO_AUTO_UPDATE=1
@ -11,9 +8,11 @@ source $HOME/.aliases
eval `dircolors $HOME/.dircolors`
source $INCLUDES/zsh-completions/zsh-completions.plugin.zsh
source $INCLUDES/zsh-history-substring-search/zsh-history-substring-search.zsh
source $INCLUDES/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
# TODO: May need to tweak this for macOS/brew installed stuff
source /usr/share/fzf/completion.zsh
source /usr/share/fzf/key-bindings.zsh
source /usr/share/zsh/plugins/zsh-history-substring-search/zsh-history-substring-search.zsh
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
HISTFILE=$HOME/.zsh_history
HISTSIZE=1000000
@ -66,10 +65,6 @@ PS1='
%F{blue}%~$(git_prompt)
%F{244}%# %F{reset}'
# TODO: May need to tweak this for macOS/brew installed fzf
source /usr/share/fzf/key-bindings.zsh
source /usr/share/fzf/completion.zsh
# Only autoload nvm on a specific machine, default to lazy loading
# TODO: Maybe drop the lazy loading entirely as I never use nvm outside of work?
if [[ $(hostname) == "x1carbon.josh" ]]; then