diff options
author | John Turner <jturner.usa@gmail.com> | 2025-07-17 16:56:13 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-07-17 16:57:31 -0400 |
commit | bb020f110c2526d5dd446e7a1a071e269880b71c (patch) | |
tree | dc94f4bf277194ef2a87569fe6514dcd1b44e323 /plugins.zsh | |
download | zshrc-bb020f110c2526d5dd446e7a1a071e269880b71c.tar.gz |
init
Diffstat (limited to 'plugins.zsh')
-rw-r--r-- | plugins.zsh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins.zsh b/plugins.zsh new file mode 100644 index 0000000..130a2e5 --- /dev/null +++ b/plugins.zsh @@ -0,0 +1,14 @@ +case ${ID} in + gentoo) + promptinit gentoo + compinit gentoo + _zsh_syntax_highlighting="/usr/share/zsh/site-functions/zsh-syntax-highlighting.zsh" + ;; + debian) + _zsh_syntax_highlighting="/usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" + ;; +esac + +if [[ -f ${_zsh_syntax_highlighting} ]]; then + source "${_zsh_syntax_highlighting}" +fi |