feat: Adding nvim-lspconfig and Mason back in for now to get the config

working well for production work.
This commit is contained in:
2026-09-01 09:29:47 -05:00
parent cad2a2f287
commit 7e7c0adfff
4 changed files with 39 additions and 19 deletions

View File

@@ -2,8 +2,6 @@
return {
cmd = vim.lsp.rpc.connect('127.0.0.1', 6005),
filetypes = {
'gd', 'gdscript', 'gdscript3'
},
filetypes = { 'gdscript' },
root_markers = { 'project.godot', '.git' },
}

View File

@@ -1,9 +1,3 @@
-- Jinja LSP setup tuned to include Tera templates
-- TODO: Not currently working correctly for Tera templates
return {
name = 'jinja_lsp',
cmd = { 'jinja-lsp' },
filetypes = { 'jinja', 'tera' },
root_markers = { '.git' },
filetypes = { 'tera', 'jinja2' },
}