mirror of
1
0
Fork 0

Merge pull request #91 from thehodapp/master

Add support for mouse if it is available
This commit is contained in:
Amir Salihefendic 2014-10-19 00:25:16 +01:00
commit f57d81bb1d
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