feat(vim): setup c# and f# languages

This commit is contained in:
Ade Attwood 2024-05-03 07:26:20 +01:00
parent ded2d4e66b
commit 1a0828b763
3 changed files with 12 additions and 0 deletions

View file

@ -48,6 +48,8 @@ local start_plugins = {
["copilot-cmp"] = { url = "https://github.com/zbirenbaum/copilot-cmp.git" },
["oil.nvim"] = { url = "https://github.com/stevearc/oil.nvim.git" },
["neoformat"] = { url = "https://github.com/sbdchd/neoformat" },
["csharpls-extended-lsp"] = { url = "https://github.com/Decodetalkers/csharpls-extended-lsp.nvim" },
["Ionide-vim"] = { url = "https://github.com/ionide/Ionide-vim" },
}
local opt_plugins = {

View file

@ -82,6 +82,8 @@ noremap <leader>; gcc
inoremap jj <esc>:w<cr>
nnoremap <leader><tab> <c-^>
let g:fsharp#lsp_auto_setup = 0
" Add mapping to "Run" tasks from the taskfile
"

View file

@ -35,6 +35,12 @@ local servers = {
},
},
},
csharp_ls = {
handlers = {
["textDocument/definition"] = require("csharpls_extended").handler,
["textDocument/typeDefinition"] = require("csharpls_extended").handler,
},
},
}
local on_attach = function(_, bufnr)
@ -89,6 +95,8 @@ for lsp, config in pairs(servers) do
lspconfig[lsp].setup(config)
end
require("ionide").setup({ on_attach = on_attach, capabilities = capabilities })
-- Change the diagnostic signs
vim.fn.sign_define("DiagnosticSignHint", { text = "", texthl = "DiagnosticSignHint", numhl = "DiagnosticSignHint" })
vim.fn.sign_define("DiagnosticSignInfo", { text = "", texthl = "DiagnosticSignInfo", numhl = "DiagnosticSignInfo" })