mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
Added configuratoin that enables better mouse support
This commit is contained in:
parent
8269a52961
commit
ff9170f996
1 changed files with 7 additions and 3 deletions
|
@ -14,17 +14,21 @@
|
||||||
set encoding=utf-8 "set encoding
|
set encoding=utf-8 "set encoding
|
||||||
set fileformats=unix,dos,mac "set compatible line endings in order of preference
|
set fileformats=unix,dos,mac "set compatible line endings in order of preference
|
||||||
set backspace=indent,eol,start "enables backspacing
|
set backspace=indent,eol,start "enables backspacing
|
||||||
set mouse=a "enables extended mouse capabilities
|
|
||||||
set clipboard=unnamedplus "enable copy/paste support between vim and the environment's clipboard
|
set clipboard=unnamedplus "enable copy/paste support between vim and the environment's clipboard
|
||||||
|
|
||||||
set lazyredraw "only redraw what needs to be redrawn
|
set lazyredraw "only redraw what needs to be redrawn
|
||||||
set ttyfast "assume a fast connection to the terminal for better rendering
|
set ttyfast "assume a fast connection to the terminal for better rendering
|
||||||
|
|
||||||
|
set mouse=a "enables mouse functionality with extended capabilities
|
||||||
|
if has("mouse_sgr")
|
||||||
|
set ttymouse=sgr "use mouse handling that emits sgr-style reporting if it's available
|
||||||
|
else
|
||||||
|
set ttymouse=xterm2 "fall back to xterm2-style reporting if sgr isn't available
|
||||||
|
endif
|
||||||
|
|
||||||
if $TERM =~ '^linux'
|
if $TERM =~ '^linux'
|
||||||
set t_Co=8 "use 8 colours when a vterm is detected
|
set t_Co=8 "use 8 colours when a vterm is detected
|
||||||
elseif !has("gui_running")
|
elseif !has("gui_running")
|
||||||
set t_Co=256 "assume 256 colours when any other terminal is detected
|
set t_Co=256 "assume 256 colours when any other terminal is detected
|
||||||
set ttymouse=xterm2 "sets the type of mouse to one we can expect in most gui envs
|
|
||||||
endif
|
endif
|
||||||
"}}}
|
"}}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue