From 87d85a4e34e5bda9f02904187e3cdb94a994c786 Mon Sep 17 00:00:00 2001 From: murgi Date: Mon, 14 Oct 2024 16:38:40 +0200 Subject: [PATCH] [ZSH] Disable vi mode for shared setups --- zsh/.zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 4091e60..b83640c 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -12,6 +12,9 @@ mkdir -p ${ZDOTDIR:-~}/.cache/zsh static_file=${ZDOTDIR:-~}/.cache/zsh/.zsh_plugins.zsh if [[ ! -f ~/.zsh/.shared_config ]]; then plugins_txt=${ZDOTDIR:-~}/.zsh/.zsh_plugins.txt + # Vi mode + bindkey -v + VI_MODE_SET_CURSOR=true else plugins_txt=${ZDOTDIR:-~}/.zsh/.zsh_plugins_shared.txt fi @@ -38,9 +41,6 @@ alias vim=nvim alias sudo='sudo ' alias cgrep="grep --color=always" export EDITOR='nvim' -# Vi mode -bindkey -v -VI_MODE_SET_CURSOR=true # Allow access to all libvirt vms export LIBVIRT_DEFAULT_URI="qemu:///system"