vimrc: " -> '
This commit is contained in:
parent
ae92727871
commit
22e33ea628
@ -925,7 +925,7 @@ set undolevels=2000
|
|||||||
set undoreload=10001
|
set undoreload=10001
|
||||||
" make folders automatically if they don't already exist
|
" make folders automatically if they don't already exist
|
||||||
if !isdirectory(expand(&undodir))
|
if !isdirectory(expand(&undodir))
|
||||||
call mkdir(expand(&undodir), "p")
|
call mkdir(expand(&undodir), 'p')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
@ -1032,9 +1032,9 @@ nnoremap <Leader>vr :source $MYVIMRC<CR>call RefreshUI()<CR>
|
|||||||
let &t_ut=''
|
let &t_ut=''
|
||||||
|
|
||||||
" as per https://github.com/direnv/direnv/wiki/Vim
|
" as per https://github.com/direnv/direnv/wiki/Vim
|
||||||
if exists("$EXTRA_VIM")
|
if exists('$EXTRA_VIM')
|
||||||
for path in split($EXTRA_VIM, ':')
|
for path in split($EXTRA_VIM, ':')
|
||||||
exec "source ".path
|
exec 'source '.path
|
||||||
endfor
|
endfor
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user