This commit is contained in:
Anthony Cicchetti 2020-10-18 20:56:54 -04:00
parent 2e1e3906b8
commit 12d30c49f1
2 changed files with 6 additions and 1 deletions

View file

@ -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

View file

@ -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