mirror of
https://github.com/gyoder/dots.git
synced 2026-02-27 17:03:45 +00:00
9 lines
172 B
Lua
9 lines
172 B
Lua
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'csharp-ls' },
|
|
root_markers = { ".git" },
|
|
filetypes = { 'cs' },
|
|
init_options = {
|
|
AutomaticWorkspaceInit = true,
|
|
},
|
|
}
|