1 question
4
votes
1
answer
369
views
How to get csharp-ls language server in neovim to find the root of my project?
I'm trying to set up the csharp-ls LSP for use in neovim for C# files. My init.lua file looks like this:
vim.lsp.config(
'csharp-ls',
{
cmd = { 'csharp-ls' },
filetypes = { 'cs'...