- added html configuration

- removed old plugins
This commit is contained in:
2025-06-26 03:42:56 -05:00
parent cc3fb9dc2e
commit ef195cc6d9
3 changed files with 9 additions and 15 deletions
+7
View File
@@ -132,6 +132,8 @@ cmp.setup({
require("mason").setup()
local html_filetypes = { "html", "templ", "htmldjango" }
vim.lsp.config("ts_ls", {
settings = {
implicitProjectConfiguration = {
@@ -141,6 +143,10 @@ vim.lsp.config("ts_ls", {
},
})
vim.lsp.config("html", {
filetypes = html_filetypes,
})
vim.lsp.enable({
"angular-language-server",
"bashls",
@@ -157,4 +163,5 @@ vim.lsp.enable({
"taplo",
"templ",
"ts_ls",
"zls",
})