I've been setting up my init.vim file to use NeoVim on Windows 10, and ran into an issue I'm struggling to understand.
At the start of my file, I set up a couple of :hi(ghlight) autocmds, and only the VertSplit seems to be ignored on starting. Even worse, I can run the command in the vim cmd bar and it'll work just fine.
Here's a snippet:
set wildmenu
set wildmode=longest:full,full " get bash-like tab completions
"set cc=120 " set an 80 column border for good coding style
filetype plugin indent on " allows auto-indenting depending on file type
set tabstop=4 " number of columns occupied by a tab character
set shiftwidth=4 " width for autoindents
set softtabstop=4 " see multiple spaces as tabstops so <BS> does the right thing
set number
set mouse=a
set undofile
set cursorline
set splitright
autocmd VimEnter :set laststatus 3<CR>
" THIS WORKS
autocmd VimEnter :hi CursorLine cterm=None guifg=#5c6773<CR>
" THIS DOESNT
autocmd VimEnter :hi VertSplit cterm=None guifg=#5c6773<CR>
Any help/advice on this? I've been googling but can't find anything about VertSplit or similar. Can also post the full conf if needed.
Thanks in advance!