Undodir
This commit is contained in:
parent
2e1e3906b8
commit
12d30c49f1
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue