vim: misc linting fixes

fix-ci
bretello 2023-09-15 00:13:48 +02:00
parent f6880b715e
commit 455ba2c17e
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 3 additions and 3 deletions

View File

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