瀏覽代碼

nixpkgs/neovim: use nil language server if present

Thomas Dy 1 年之前
父節點
當前提交
89ff706982
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      .config/nixpkgs/neovim/lsp.lua

+ 6 - 0
.config/nixpkgs/neovim/lsp.lua

@@ -87,6 +87,12 @@ if vim.fn.executable("solargraph") == 1 then
   })
 end
 
+if vim.fn.executable("nil") == 1 then
+  nvim_lsp.nil_ls.setup({
+    on_attach = on_attach,
+  });
+end
+
 local group = vim.api.nvim_create_augroup('LspFormatting', { clear = false })
 
 null_ls.setup({