Small responsiveness improvement
dblume

dblume commited on 2024-03-08 01:50:10
Showing 1 changed files, with 2 additions and 0 deletions.


For slow connections and terminal multiplexers, turn off some updates
at the bottom of the screen for partial commands and selection areas

https://www.reddit.com/r/neovim/comments/7epa94/neovim_slowness_compared_to_vim_8/dq6ouqy/
... ...
@@ -9,6 +9,8 @@ set iskeyword+=-    " Add - to list of non-word-breaking chars.
9 9
 set scrolloff=0     " EC2 defaults to 5. Set explicitly to be consistent
10 10
 set notermguicolors " Only needed for neovim while I port my color schemes
11 11
 set undofile        " undo even after closing and reopening a file
12
+set noshowcmd       " Show size of selected area in visual mode on last line
13
+set noruler         " Show coordinates on status line
12 14
 
13 15
 " The following two lines set the use of perl regex, aka "very magic"
14 16
 nnoremap / /\v
15 17