diff options
| author | Igor Lacerda <igorlfs@ufmg.br> | 2026-01-27 10:23:14 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-27 08:23:14 -0500 |
| commit | ff18d1256877361113edc2970a2c367043d6414c (patch) | |
| tree | ab7a0fe1d70a40d6949b98322fe97e5659170998 /lsp | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-ff18d1256877361113edc2970a2c367043d6414c.tar nvim-lspconfig-ff18d1256877361113edc2970a2c367043d6414c.tar.gz nvim-lspconfig-ff18d1256877361113edc2970a2c367043d6414c.tar.bz2 nvim-lspconfig-ff18d1256877361113edc2970a2c367043d6414c.tar.lz nvim-lspconfig-ff18d1256877361113edc2970a2c367043d6414c.tar.xz nvim-lspconfig-ff18d1256877361113edc2970a2c367043d6414c.tar.zst nvim-lspconfig-ff18d1256877361113edc2970a2c367043d6414c.zip | |
fix: cleanup unknown filetypes #4266
Diffstat (limited to 'lsp')
| -rw-r--r-- | lsp/biome.lua | 1 | ||||
| -rw-r--r-- | lsp/emmet_language_server.lua | 2 | ||||
| -rw-r--r-- | lsp/html.lua | 2 | ||||
| -rw-r--r-- | lsp/tsgo.lua | 2 |
4 files changed, 1 insertions, 6 deletions
diff --git a/lsp/biome.lua b/lsp/biome.lua index 71fdfb48..8dc91cf2 100644 --- a/lsp/biome.lua +++ b/lsp/biome.lua @@ -34,7 +34,6 @@ return { 'jsonc', 'svelte', 'typescript', - 'typescript.tsx', 'typescriptreact', 'vue', }, diff --git a/lsp/emmet_language_server.lua b/lsp/emmet_language_server.lua index 89c5f4bb..d508a24d 100644 --- a/lsp/emmet_language_server.lua +++ b/lsp/emmet_language_server.lua @@ -19,11 +19,9 @@ return { 'htmldjango', 'javascriptreact', 'less', - 'pug', 'sass', 'scss', 'svelte', - 'templ', 'typescriptreact', 'vue', }, diff --git a/lsp/html.lua b/lsp/html.lua index 2b53d324..2ef030bc 100644 --- a/lsp/html.lua +++ b/lsp/html.lua @@ -25,7 +25,7 @@ ---@type vim.lsp.Config return { cmd = { 'vscode-html-language-server', '--stdio' }, - filetypes = { 'html', 'templ' }, + filetypes = { 'html' }, root_markers = { 'package.json', '.git' }, settings = {}, init_options = { diff --git a/lsp/tsgo.lua b/lsp/tsgo.lua index e51971dc..343ed4c9 100644 --- a/lsp/tsgo.lua +++ b/lsp/tsgo.lua @@ -27,10 +27,8 @@ return { filetypes = { 'javascript', 'javascriptreact', - 'javascript.jsx', 'typescript', 'typescriptreact', - 'typescript.tsx', }, root_dir = function(bufnr, on_dir) -- The project root is where the LSP can be started from |
