Remove explicit settings that are neovim defaults
dblume

dblume commited on 2024-03-07 11:12:10
Showing 1 changed files, with 1 additions and 11 deletions.

... ...
@@ -1,10 +1,6 @@
1
-" Version 2024-03-06.1 - Original, with many bugs
1
+" Version 2024-03-07.1 - First misc fixes
2 2
 set bs=2            " allow backspacing over everything in insert mode
3
-set wildmenu        " Allows command-line completion with tab
4
-set autoindent      " Copy indent from current line when starting a new line
5 3
 set smartindent     " Do smart auto indenting when starting  new line
6
-set smarttab        " Honor 'shiftwidth', 'tabstop' or 'softtabstop'
7
-set hlsearch        " highlight all matches for previous search
8 4
 set foldlevel=99
9 5
 set nowrap          " no wrapping text lines on the screen (exceptions below)
10 6
 set sidescroll=5
... ...
@@ -12,13 +8,7 @@ set listchars+=tab:>-,precedes:<,extends:>,nbsp:ยท " for :set list
12 8
 set iskeyword+=-    " Add - to list of non-word-breaking chars.
13 9
 set scrolloff=0     " EC2 defaults to 5. Set explicitly to be consistent
14 10
 set notermguicolors " Only needed for neovim while I port my color schemes
15
-
16
-if v:version >= 703
17
-  " Do save the undo tree to file, but not in the local directory.
18
-  " Don't forget to mkdir ~/.nvim_undo
19
-  set undodir=~/.nvim_undo,.
20 11
 set undofile        " undo even after closing and reopening a file
21
-endif
22 12
 
23 13
 " The following two lines set the use of perl regex, aka "very magic"
24 14
 nnoremap / /\v
25 15