From b38d0e992a76ad22e38b5efe397cabb743142352 Mon Sep 17 00:00:00 2001 From: Marc Date: Tue, 28 Apr 2020 07:20:56 +0200 Subject: [PATCH] added zsh plugins --- .config/zsh/.zshrc | 3 +++ .config/zsh/plugins/zsh-syntax-highlighting | 1 + .gitmodules | 4 ++++ 3 files changed, 8 insertions(+) create mode 160000 .config/zsh/plugins/zsh-syntax-highlighting 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