mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
add(nix): nil ls
This commit is contained in:
parent
8bdfab9cda
commit
c40f354fe2
2 changed files with 11 additions and 7 deletions
|
|
@ -23,11 +23,7 @@ local servers = {
|
|||
texlab = {}, -- texlab
|
||||
tsserver = {}, -- TypeScript
|
||||
vimls = {}, -- vim
|
||||
rnix = {}, -- Nix
|
||||
|
||||
ocamllsp = { -- OCaml
|
||||
exclude = true,
|
||||
},
|
||||
typst_lsp = { -- Typst
|
||||
exportPdf = "never",
|
||||
},
|
||||
|
|
@ -47,6 +43,13 @@ local servers = {
|
|||
},
|
||||
},
|
||||
|
||||
nil_ls = { -- Nix
|
||||
masonExclude = true,
|
||||
},
|
||||
|
||||
ocamllsp = { -- OCaml
|
||||
masonExclude = true,
|
||||
},
|
||||
}
|
||||
------------------
|
||||
-- Linters, etc --
|
||||
|
|
@ -173,7 +176,7 @@ usercmd("MasonInstallAll",
|
|||
function()
|
||||
local server_names = Filter(
|
||||
servers,
|
||||
function(server) return not server.exclude end
|
||||
function(server) return not server.masonExclude end
|
||||
)
|
||||
local mason_names = Concat(
|
||||
Map(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue