A vim plugin powered by OmniSharp and coc.nvim.
coc-omnisharp
is an extension for coc.nvim
.
You can install coc.nvim
with a plugin manager like vim-plug:
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Then, use :CocInstall coc-omnisharp
to install.
Alternatively, you can have coc.nvim
automatically install the extension if it's missing:
let g:coc_global_extensions=[ 'coc-omnisharp', ... ]
You can call :CocConfig
to edit configuration. Available options are:
Key | Description | Type | Default |
---|---|---|---|
omnisharp.version | Download a specific version | string | latest |
omnisharp.path | For use with existing installation | string | |
omnisharp.trace.server | Specify trace level | information | verbose | information |
omnisharp.debug.server | Wait for debugger | boolean | false |
{
"omnisharp.version": "v1.37.3",
"omnisharp.trace.server": "information",
"omnisharp.debug.server": true
}
vim-polyglot for syntax highlighting 🎨