mirror of
https://git.decapod.one/brethil/dotfiles
synced 2024-11-21 19:11:30 +01:00
vim: misc linting fixes
This commit is contained in:
parent
f6880b715e
commit
455ba2c17e
|
@ -9,7 +9,7 @@ scriptencoding utf-8
|
|||
|
||||
"" Style
|
||||
" enable truecolor mode
|
||||
if has("termguicolors")
|
||||
if has('termguicolors')
|
||||
set termguicolors
|
||||
else
|
||||
let &t_8f = "\<Esc>[38:2:%lu:%lu:%lum"
|
||||
|
@ -110,9 +110,9 @@ augroup vimconfig
|
|||
augroup END
|
||||
|
||||
if has('persistent_undo')
|
||||
let undo_dir=$HOME . "/.vim/undo"
|
||||
let undo_dir=$HOME . '/.vim/undo'
|
||||
if !isdirectory(undo_dir)
|
||||
call mkdir(undo_dir , "p", 0700)
|
||||
call mkdir(undo_dir , 'p', 0700)
|
||||
endif
|
||||
let &undodir=undo_dir
|
||||
set undofile
|
||||
|
|
Loading…
Reference in New Issue
Block a user