This commit is contained in:
2025-09-08 21:50:10 +01:00
parent 66b3347647
commit 7d00a2af45
3 changed files with 20 additions and 2 deletions

View File

@@ -15,7 +15,23 @@ local pack = require("lynn")
pack.setup("doloro.plugins")
-- add lsp's as i need
vim.lsp.enable('lua_ls', 'rust_analyzer', 'superhtml')
vim.lsp.enable({'lua_ls', 'rust_analyzer', 'html'})
opts = {
settings = {
html = {
format = {
templating = true,
wrapLineLength = 120,
wrapAttributes = 'auto',
},
hover = {
documentation = true,
references = true,
},
},
},
}
-- vim.notify('config loaded', vim.log.levels.INFO)