-
Notifications
You must be signed in to change notification settings - Fork 166
Open
Description
I've recently added the plugin to my windows nvim installation. Here are the steps I followed:
-
Installed vim-plug using
iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |` ni "$(@($env:XDG_DATA_HOME, $env:LOCALAPPDATA)[$null -eq $env:XDG_DATA_HOME])/nvim-data/site/autoload/plug.vim" -Force
as shown here.
-
Added
Plug 'OmniSharp/omnisharp-vim'to myinit.vimfile -
Ran
:PlugInstall -
Ran
:OmniSharpInstall
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?
Metadata
Metadata
Assignees
Labels
No labels

