From 12d30c49f17e0569ddf484e2fab1862666e413ae Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Sun, 18 Oct 2020 20:56:54 -0400 Subject: [PATCH] Undodir --- vim/vimrc | 5 ++++- zsh/zshrc | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index 32797fb..2d79584 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -43,8 +43,11 @@ if has('nvim') endif if has("persistent_undo") + if !isdirectory("~/.undodir") + call mkdir("~/.undodir", "p", 0770) + endif + set undodir=~/.undodir set undofile - set undodir=$HOME."/.undodir" augroup undodir autocmd! autocmd BufWritePre /tmp/* setlocal noundofile diff --git a/zsh/zshrc b/zsh/zshrc index 0068c81..09beb86 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -19,6 +19,8 @@ zstyle ':completion:*' rehash true zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'l:|=* r:|=*' zstyle ":completion:*" substitute 1 +autoload zmv + autoload -Uz up-line-or-beginning-search down-line-or-beginning-search zle -N up-line-or-beginning-search zle -N down-line-or-beginning-search