From 04d13c993d71462d28d1962b527c1a21bec137bb Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 22 May 2023 14:33:17 -0400 Subject: [PATCH] neovim: Add nvim-lspconfig No idea why this wasn't working before but it now works so I'm not complaining. --- terminal/neovim/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/terminal/neovim/default.nix b/terminal/neovim/default.nix index 7459ec00..c9bc7ea1 100644 --- a/terminal/neovim/default.nix +++ b/terminal/neovim/default.nix @@ -99,6 +99,11 @@ type = "lua"; config = ''require("scrollbar").setup()''; } + { + plugin = nvim-lspconfig; + type = "lua"; + config = "require'lspconfig'.nil_ls.setup{}"; + } { plugin = nvim-base16; type = "lua";