diff options
| author | jdhao <jdhao@hotmail.com> | 2019-11-19 20:29:51 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-19 20:29:51 +0800 |
| commit | 79482f14a562435a875e782f4143581bfcdcbf3f (patch) | |
| tree | 366d2bf58e783072efd9f55954503ab54dfc6675 | |
| parent | 0070fb25de786508827a886f10493c5a7911088f (diff) | |
The mouse feature is assumed by default.
| -rw-r--r-- | options.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/options.vim b/options.vim index 032090a..27d0b40 100644 --- a/options.vim +++ b/options.vim @@ -69,10 +69,8 @@ set colorcolumn=80 set scrolloff=3 " Use mouse to select and resize windows, etc. -if has('mouse') - set mouse=nv " Enable mouse in several mode - set mousemodel=popup " Set the behaviour of mouse -endif +set mouse=nv " Enable mouse in several mode +set mousemodel=popup " Set the behaviour of mouse " Do not show mode on command line since vim-airline can show it set noshowmode |
