diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2022-10-11 12:35:24 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2022-10-11 12:35:24 +0200 |
commit | bc91e333326c7a93803962443f3f767f15c10706 (patch) | |
tree | 97ea15f9ad5e41039f67c744af062d882f5b6d59 /install | |
parent | 25892b502b18958b31a1b1ec6cd4e4d165481e9b (diff) | |
download | dotfiles-bc91e333326c7a93803962443f3f767f15c10706.tar.gz dotfiles-bc91e333326c7a93803962443f3f767f15c10706.zip |
Add zsh-vi-mode
Diffstat (limited to 'install')
-rwxr-xr-x | install/install_linux.sh | 2 | ||||
-rwxr-xr-x | install/install_mac.sh | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/install/install_linux.sh b/install/install_linux.sh index 7abc12f..2486a2f 100755 --- a/install/install_linux.sh +++ b/install/install_linux.sh @@ -38,6 +38,8 @@ if [ $res -eq 1 ]; then git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions # Zsh-syntax-highlighting git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting + # Zsh-vi-mode + git clone https://github.com/jeffreytse/zsh-vi-mode $ZSH_CUSTOM/plugins/zsh-vi-mode tput rc; tput ed fi diff --git a/install/install_mac.sh b/install/install_mac.sh index c2c46a8..3250bd6 100755 --- a/install/install_mac.sh +++ b/install/install_mac.sh @@ -45,6 +45,8 @@ if [ $res -eq 1 ]; then git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions # Zsh-syntax-highlighting git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting + # Zsh-vi-mode + git clone https://github.com/jeffreytse/zsh-vi-mode $ZSH_CUSTOM/plugins/zsh-vi-mode tput rc; tput ed fi |