mirror of
1
0
Fork 0

Add support for mouse if it is available

This commit is contained in:
Dennis Hodapp 2014-10-12 21:03:28 -05:00
parent d283422444
commit 7267320d1d
1 changed files with 5 additions and 0 deletions

View File

@ -102,6 +102,11 @@ set hid
set backspace=eol,start,indent
set whichwrap+=<,>,h,l
" In many terminal emulators the mouse works just fine, thus enable it.
if has('mouse')
set mouse=a
endif
" Ignore case when searching
set ignorecase