fix: change to csharp_ls
This commit is contained in:
parent
2b7f02f3e6
commit
f3186bce02
3 changed files with 13 additions and 2 deletions
|
|
@ -26,6 +26,10 @@ map("n", "j", 'h', opts)
|
|||
map("n", "k", 'j', opts)
|
||||
map("n", "l", 'k', opts)
|
||||
map("n", ";", 'l', opts)
|
||||
map("v", "j", 'h', opts)
|
||||
map("v", "k", 'j', opts)
|
||||
map("v", "l", 'k', opts)
|
||||
map("v", ";", 'l', opts)
|
||||
|
||||
-- debug
|
||||
map("n", "<F5>", ':lua require("dap").toggle_breakpoint()<CR>', opts)
|
||||
|
|
|
|||
|
|
@ -49,6 +49,13 @@ return {
|
|||
ansiblels = {},
|
||||
marksman = {},
|
||||
asm_lsp = {},
|
||||
csharp_ls = {
|
||||
cmd = { "/home/dashie/.dotnet/tools/csharp-ls" },
|
||||
filetypes = { "cs" },
|
||||
init_options = {
|
||||
AutomaticWorkspaceInit = true,
|
||||
},
|
||||
},
|
||||
tsserver = {
|
||||
settings = {
|
||||
typescript = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue