fix(neovim): Blank to default lsp configurations

- Configuration for files under `/lsp` are added
This commit is contained in:
Pratik Tripathy
2025-09-01 11:54:16 +05:30
parent eb9b6b5ab3
commit 3be53f130a
20 changed files with 118 additions and 46 deletions

View File

@@ -1,6 +1,9 @@
return {
-- cmd = { ... },
-- filetypes = { ... },
-- capabilities = {},
cmd = { "vscode-html-language-server", "--stdio" },
filetypes = { "html", "twig", "hbs" },
settings = {
html = {
format = { wrapLineLength = 120 },
},
},
}