Selaa lähdekoodia

nixpkgs/neovim: add solargraph lsp

Thomas Dy 3 vuotta sitten
vanhempi
commit
d7f9cedcf1
1 muutettua tiedostoa jossa 6 lisäystä ja 0 poistoa
  1. 6 0
      .config/nixpkgs/neovim/lsp.lua

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

@@ -89,6 +89,12 @@ if vim.fn.executable("node_modules/.bin/tsc") == 1 then
   })
 end
 
+if vim.fn.executable("solargraph") == 1 then
+  nvim_lsp.solargraph.setup({
+    on_attach = on_attach,
+  })
+end
+
 local group = vim.api.nvim_create_augroup('LspFormatting', { clear = false })
 
 null_ls.setup({