Parcourir la source

nixpkgs/neovim: disable solargraph formatting

Thomas Dy il y a 2 ans
Parent
commit
3dda738205
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. 3 0
      .config/nixpkgs/neovim/lsp.lua

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

@@ -101,6 +101,9 @@ end
 if vim.fn.executable("solargraph") == 1 then
   nvim_lsp.solargraph.setup({
     on_attach = on_attach,
+    init_options = {
+      formatting = false,
+    }
   })
 end