I've recently added the plugin to my windows nvim installation. Here are the steps I followed:
Both PlugInstall and OmniSharpInstall seem to have run without any issues. My init.vim ended up looking like this:
au VimLeave * set guicursor= | call chansend(v:stderr, "\x1b[ q")
set number
set colorcolumn=88
set tabstop=3
set shiftwidth=3
call plug#begin()
Plug 'OmniSharp/omnisharp-vim'
call plug#end()
It appears to me that the installation went fine. However, there are two issues:
- It takes forever (>8 seconds) for the server to load when I open a simple CS file:

- There seems to be an issue with the syntax highlighting when I add a line after the server loads:

I'm hoping it's something wrong with my setup. Any pointers?
I've recently added the plugin to my windows
nviminstallation. Here are the steps I followed:Installed vim-plug using
as shown here.
Added
Plug 'OmniSharp/omnisharp-vim'to myinit.vimfileRan
:PlugInstallRan
:OmniSharpInstallBoth
PlugInstallandOmniSharpInstallseem to have run without any issues. Myinit.vimended up looking like this:It appears to me that the installation went fine. However, there are two issues:
I'm hoping it's something wrong with my setup. Any pointers?