update conf

This commit is contained in:
Johannes Knopp
2026-06-16 17:45:49 +02:00
parent a7aa1b2237
commit 48b73c40e9
10 changed files with 155 additions and 105 deletions

View File

@ -85,7 +85,7 @@ return {
-- Explicitly enable all mason-managed servers.
-- This is belt-and-suspenders alongside mason-lspconfig's automatic_enable,
-- ensuring servers start regardless of mason-lspconfig version.
vim.lsp.enable({ 'lua_ls', 'html', 'cssls', 'bashls', 'ts_ls', 'eslint', 'tailwindcss', 'mdx_analyzer' })
vim.lsp.enable({ 'lua_ls', 'html', 'cssls', 'bashls', 'ts_ls', 'eslint', 'tailwindcss', 'mdx_analyzer', 'rust_analyzer' })
-- mdx_analyzer: needs typescript SDK path to find tsserverlibrary.js
vim.lsp.config('mdx_analyzer', {
@ -111,5 +111,10 @@ return {
})
vim.lsp.enable('qmlls')
-- vim.lsp.config('postgres_lsp', {
-- cmd = { 'postgres-language-server', 'lsp-proxy' },
-- })
vim.lsp.enable('postgres_lsp')
end,
}

View File

@ -34,6 +34,7 @@ return {
'ts_ls',
'eslint',
'tailwindcss',
'rust_analyzer',
},
})