diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index dd3ab46..edd5098 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -85,6 +85,9 @@ do source $plugin done +source $PLUGINS/zsh-autosuggestions/zsh-autosuggestions.zsh +source $PLUGINS/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh + # -------------------------------------- # Themes # -------------------------------------- diff --git a/.config/zsh/plugins/zsh-syntax-highlighting b/.config/zsh/plugins/zsh-syntax-highlighting new file mode 160000 index 0000000..f1b9fbb --- /dev/null +++ b/.config/zsh/plugins/zsh-syntax-highlighting @@ -0,0 +1 @@ +Subproject commit f1b9fbbaf0123fb7b14b4a11bc18c86fd4b2305b diff --git a/.gitmodules b/.gitmodules index 2cbbdf1..0a5c83d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,3 +2,7 @@ path = .config/zsh/plugins/zsh-autosuggestions url = https://github.com/zsh-users/zsh-autosuggestions.git branch = master +[submodule ".config/zsh/plugins/zsh-syntax-highlighting"] + path = .config/zsh/plugins/zsh-syntax-highlighting + url = https://github.com/zsh-users/zsh-syntax-highlighting + branch = master