Compare commits

..

No commits in common. "2e50fb95a89b2d9c31c27dd704d60782c6240673" and "03c2721c5d637f02cd27465a0325dbf88d83bfc4" have entirely different histories.

7 changed files with 25 additions and 9 deletions

@ -1 +1 @@
Subproject commit 958fcfa0d8ce46d215e19cc3992c542f576c4123
Subproject commit 13e4ef8f4dd5639fca2eb9150e68f47639a9b37d

@ -1 +1 @@
Subproject commit 24122371810089d390847d8ba66325c1f1aa64c0
Subproject commit cd2cf0c124d3de577fb5449746568ee8e601afc8

@ -1 +1 @@
Subproject commit 8012b55eee65eba1d1ee4df0a186d30e72dcbe65
Subproject commit d6dcfe888724d271dcbaa6f2c80f9f706b39cd2a

@ -1 +1 @@
Subproject commit 84cc9ed772f1fee2f47c1e076f518829583d8347
Subproject commit dfa4178c0cadb44f687603d72ad0908474c28dd9

@ -1 +1 @@
Subproject commit 19ca61c78c86a2ce6a425aee9b1c6664e5149ea6
Subproject commit ce882460cf3db12e99f8bf579cbf99e331f6dd4f

@ -1 +1 @@
Subproject commit 9f30bf101f86541f811800cfc3fec52a2174bd68
Subproject commit 7ab86656c99d51389c0b341faf24d36dd192a00d

View file

@ -14,11 +14,28 @@
set backspace=indent,eol,start "enables/configures standard backspace behaviour
"use the '*' register as well as the '+' register if it's available too
set clipboard=unnamed
if has('unnamedplus')
set clipboard=unnamedplus
if has('nvim')
set clipboard=unnamedplus
else
set clipboard+=unnamedplus
endif
endif
if has('nvim')
"extend selection instead of showing the right click menu in neovim
set mousemodel=extend
else
"fancy mouse in vim reporting with xterm2 fallback
if has("mouse_sgr")
set ttymouse=sgr
else
set ttymouse=xterm2
endif
endif
set mousemodel=extend "extend selection instead of showing the right click menu in neovim
set mouse=a "enables mouse functionality with extended capabilities
"8 colours in $TERM=linux, 256 elsewhere
@ -66,7 +83,6 @@
set scrolloff=5 "scroll vertically when the cursor is 5 characters away from the top or bottom
set sidescroll=1 sidescrolloff=5 "scroll horizontally when the cursor is 5 chars away from the edge
set list listchars=tab:>-,trail:- "display tabs as: >--- and trailing spaces as: -
set shortmess+=I "disable startup message
set showmatch "show matching open bracket when closed bracket is inserted
set matchtime=5 "the amount of time before the matching bracket will highlight
let &showbreak = "" "character to prepend to wrapped lines when line wrapping is enabled