Compare commits

...

3 commits

Author SHA1 Message Date
Kevin MacMartin
2e50fb95a8 Disable the startup message 2024-05-16 21:13:42 -04:00
Kevin MacMartin
bd6f2e9dca Remove some stuff that checks for neovim since we know we're using neovim 2024-05-16 18:06:30 -04:00
Kevin MacMartin
b3eef281d1 Update submodules 2024-05-16 16:42:38 -04:00
7 changed files with 9 additions and 25 deletions

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

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

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

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

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

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

View file

@ -14,28 +14,11 @@
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')
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
set clipboard=unnamedplus
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
@ -83,6 +66,7 @@
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