Added if/then to ignore directive incompatible with nvim

Aiming to keep .vimrc compatible with nvim for testing.
This commit is contained in:
2025-04-28 14:27:13 -04:00
parent 81ac79f7b4
commit 08bf9e7354

4
.vimrc
View File

@@ -24,7 +24,9 @@ set ruler " show cursor poition
set scrolloff=10 " number of lines to keep above and below the cursor set scrolloff=10 " number of lines to keep above and below the cursor
set showmatch " show matching brackets when text indicator is over them set showmatch " show matching brackets when text indicator is over them
set splitright " Split to right by default set splitright " Split to right by default
set term=xterm-256color " LOTS of colors if !has('nvim')
set term=xterm-256color " LOTS of colors
endif
set wildmenu " enhanced command line completion set wildmenu " enhanced command line completion
" Text Wrapping " Text Wrapping