vimrc: " -> '

This commit is contained in:
surtur 2022-08-11 12:48:30 +02:00
parent ae92727871
commit 22e33ea628
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -925,7 +925,7 @@ set undolevels=2000
set undoreload=10001
" make folders automatically if they don't already exist
if !isdirectory(expand(&undodir))
call mkdir(expand(&undodir), "p")
call mkdir(expand(&undodir), 'p')
endif
@ -1032,9 +1032,9 @@ nnoremap <Leader>vr :source $MYVIMRC<CR>call RefreshUI()<CR>
let &t_ut=''
" as per https://github.com/direnv/direnv/wiki/Vim
if exists("$EXTRA_VIM")
if exists('$EXTRA_VIM')
for path in split($EXTRA_VIM, ':')
exec "source ".path
exec 'source '.path
endfor
endif