feat: Adding LSP configs for ansiblels, arduino_language_server,

marksman. Adding documentation for LSP configs. Removing Mason config
and the reference to nvim-lspconfig.
This commit is contained in:
2026-08-18 19:55:33 -05:00
parent 76845fee2c
commit 089ba53e8b
7 changed files with 56 additions and 33 deletions

View File

@@ -0,0 +1,20 @@
-- local util = require 'lspconfig.util'
return {
filetypes = { 'arduino' },
root_dir = function(bufnr, on_dir)
local fname = vim.api.nvim_buf_get_name(bufnr)
-- on_dir(util.root_pattern('*.ino')(fname))
end,
cmd = {
'arduino-language-server',
},
capabilities = {
textDocument = {
semanticTokens = vim.NIL,
},
workspace = {
semanticTokens = vim.NIL,
},
},
}