1
0
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:
bretello 2023-09-15 00:13:48 +02:00
parent f6880b715e
commit 455ba2c17e
Signed by: brethil
GPG Key ID: 876AAC6290170FE7

View File

@ -9,7 +9,7 @@ scriptencoding utf-8
"" Style "" Style
" enable truecolor mode " enable truecolor mode
if has("termguicolors") if has('termguicolors')
set termguicolors set termguicolors
else else
let &t_8f = "\<Esc>[38:2:%lu:%lu:%lum" let &t_8f = "\<Esc>[38:2:%lu:%lu:%lum"
@ -110,9 +110,9 @@ augroup vimconfig
augroup END augroup END
if has('persistent_undo') if has('persistent_undo')
let undo_dir=$HOME . "/.vim/undo" let undo_dir=$HOME . '/.vim/undo'
if !isdirectory(undo_dir) if !isdirectory(undo_dir)
call mkdir(undo_dir , "p", 0700) call mkdir(undo_dir , 'p', 0700)
endif endif
let &undodir=undo_dir let &undodir=undo_dir
set undofile set undofile