vimrc: disable mouse in console vim

This commit is contained in:
2024-07-07 16:35:03 -04:00
parent 58fe9a25ad
commit ad8e674f38

View File

@@ -37,3 +37,7 @@ let g:suda_smart_edit = 1
if has('win32')
let g:airline_theme='base16_google'
endif
if !has('gui_running')
set mouse-=a
endif