blob: 79211174237b78049d4d246cef32547741d71806 (
plain)
1
2
3
4
5
6
|
local pid = vim.fn.getpid()
require'lspconfig'.omnisharp.setup{
cmd = { "/usr/bin/omnisharp", "--languageserver" , "--hostPID", tostring(pid) }
-- Additional configuration can be added here
}
|