From 43af656a9e1325e76c69e6f5e694214156c278f1 Mon Sep 17 00:00:00 2001 From: Marcelo Date: Sun, 30 Mar 2025 04:26:45 -0300 Subject: Replace nvim-lspconfig and blink completion with NVIM 0.11 native options. --- lsp/html.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lsp/html.lua (limited to 'lsp/html.lua') diff --git a/lsp/html.lua b/lsp/html.lua new file mode 100644 index 0000000..f601246 --- /dev/null +++ b/lsp/html.lua @@ -0,0 +1,11 @@ +return { + cmd = { "vscode-html-language-server", "--stdio" }, + filetypes = { "html" }, + root_markers = { "package.json", ".git" }, + single_file_support = true, + init_options = { + provideFormatter = true, + embeddedLanguages = { css = true, javascript = true }, + configurationSection = { "html", "css", "javascript" }, + }, +} -- cgit v1.2.3