mirror of
https://github.com/amix/vimrc
synced 2025-06-28 18:44:59 +08:00
Add support for mouse if it is available
This commit is contained in:
@ -102,6 +102,11 @@ set hid
|
|||||||
set backspace=eol,start,indent
|
set backspace=eol,start,indent
|
||||||
set whichwrap+=<,>,h,l
|
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
|
" Ignore case when searching
|
||||||
set ignorecase
|
set ignorecase
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user