diff --git a/.gitmodules b/.gitmodules index 3f7a197..1ddfa68 100644 --- a/.gitmodules +++ b/.gitmodules @@ -6,3 +6,7 @@ path = .zsh/syntax-highlighting url = https://github.com/zsh-users/zsh-syntax-highlighting branch = master +[submodule ".zsh/autopairs"] + path = .zsh/autopairs + url = https://github.com/hlissner/zsh-autopair + branch = master diff --git a/.zsh/autopairs b/.zsh/autopairs new file mode 160000 index 0000000..449a7c3 --- /dev/null +++ b/.zsh/autopairs @@ -0,0 +1 @@ +Subproject commit 449a7c3d095bc8f3d78cf37b9549f8bb4c383f3d diff --git a/.zshrc b/.zshrc index 317d5c4..657afdf 100644 --- a/.zshrc +++ b/.zshrc @@ -81,8 +81,15 @@ _init (){ local zconf="$HOME/.zsh" local zAutosg="$zconf/autosuggestions/zsh-autosuggestions.zsh" local zSynthl="$zconf/syntax-highlighting/zsh-syntax-highlighting.zsh" + local zTruecolor="$zconf/custom/256color.zsh" + local zAutopairs="$zconf/autopairs/zsh-autopair.plugin.zsh" - local _pluginlist=("$zAutosg" "$zSynthl") + local _pluginlist=( + "$zAutosg" + "$zSynthl" + "$zTruecolor" + "$zAutopairs" +) # ─< init plugis >──────────────────────────────────────────────────────────────────────── for zPlug in "${_pluginlist[@]}"; do