From 455ba2c17e15c403fd868340ff7c9f6c5e57df9d Mon Sep 17 00:00:00 2001 From: bretello Date: Fri, 15 Sep 2023 00:13:48 +0200 Subject: [PATCH] vim: misc linting fixes --- vim/vimrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 02da635..3ed67ae 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -9,7 +9,7 @@ scriptencoding utf-8 "" Style " enable truecolor mode -if has("termguicolors") +if has('termguicolors') set termguicolors else let &t_8f = "\[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