Files
dotfiles/common/.config/nvim/lsp/html.lua
Pratik Tripathy 3be53f130a fix(neovim): Blank to default lsp configurations
- Configuration for files under `/lsp` are added
2025-09-01 11:54:16 +05:30

10 lines
209 B
Lua

return {
cmd = { "vscode-html-language-server", "--stdio" },
filetypes = { "html", "twig", "hbs" },
settings = {
html = {
format = { wrapLineLength = 120 },
},
},
}