vim: tune vimrc config

This commit is contained in:
Colin 2022-05-02 23:49:30 +00:00
parent b44c7062b5
commit c0e3773415

View File

@ -48,6 +48,18 @@
vimrcConfig.customRC = ''
" wtf vim project: NOBODY LIKES MOUSE FOR VISUAL MODE
set mouse-=a
" copy/paste to system clipboard
set clipboard=unnamedplus
" <tab> completion menu settings
set wildmenu
set wildmode=longest,list,full
" highlight all matching searches (using / and ?)
set hlsearch
" allow backspace to delete empty lines in insert mode
set backspace=indent,eol,start
" highlight trailing space & related syntax errors (does this work?)
let c_space_errors=1
let python_space_errors=1
'';
})
];