From 48d380199207794b4d30b1bfa614c935b1713941 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Wed, 9 Jul 2025 10:36:28 +0200 Subject: [PATCH] nvim/lsp: drop unused lsp config --- .config/nvim/plugin/lsp.lua | 40 ++++++++++++++----------------------- 1 file changed, 15 insertions(+), 25 deletions(-) diff --git a/.config/nvim/plugin/lsp.lua b/.config/nvim/plugin/lsp.lua index ed169743..8fdaf4e7 100644 --- a/.config/nvim/plugin/lsp.lua +++ b/.config/nvim/plugin/lsp.lua @@ -1,35 +1,25 @@ local mylsp = require("lsp") local servers = { - clangd = {}, -- C/CPP - cssls = {}, -- CSS - html = {}, -- HTML - jsonls = {}, -- JSON - lemminx = {}, -- XML - phpactor = {}, -- PHP - pylsp = {}, -- Python - pyright = {}, - taplo = {}, -- TOML - texlab = {}, -- texlab - ts_ls = {}, -- TypeScript - vimls = {}, -- Vim Script - ocamllsp = {}, -- OCaml - gleam = {}, -- Gleam - yamlls = {}, -- yaml - gopls = {}, -- Golang - elmls = {}, -- elm + clangd = {}, + cssls = {}, + html = {}, + jsonls = {}, + ts_ls = {}, + taplo = {}, + yamlls = {}, + + bashls = {}, + fish_lsp = {}, + + pyright = {}, + lua_ls = {}, + gopls = {}, -- -- fix this, it shows spamming message on top -- golangci_lint_ls = {}, - - fish_lsp = {}, - bashls = {}, - tinymist = {}, - - lua_ls = {}, - - nil_ls = { -- Nix + nil_ls = { ["nil"] = { formatting = { command = { "alejandra" } } }, }, }