Change summary
dot_config/zsh/private_dot_zshrc.tmpl | 12 ++++++++++++
1 file changed, 12 insertions(+)
Detailed changes
@@ -1,3 +1,13 @@
+# Theming
+{{- if eq .theme_variant "dark" }}
+# https://github.com/catppuccin/zsh-syntax-highlighting
+source ~/.config/zsh/themes/catppuccin-macchiato.zsh
+{{- end }}
+{{- if eq .theme_variant "light" }}
+# https://github.com/catppuccin/zsh-syntax-highlighting
+source ~/.config/zsh/themes/catppuccin-latte.zsh
+{{- end }}
+
# Remove older command from the history if a duplicate is to be added.
setopt HIST_IGNORE_ALL_DUPS
# Prompt for spelling correction of commands.
@@ -209,5 +219,7 @@ autoload -Uz compinit && compinit
source $XDG_CONFIG_HOME/zsh/completions/charm.zsh
source $XDG_CONFIG_HOME/zsh/completions/starship.zsh
source $XDG_CONFIG_HOME/zsh/completions/antidot.zsh
+autoload -U +X bashcompinit && bashcompinit
+complete -o nospace -C /usr/bin/mcli mcli
compinit -d "$XDG_CACHE_HOME"/zsh/zcompdump-"$ZSH_VERSION"