Explorar el Código

nixpkgs/neovim: disable solargraph formatting

Thomas Dy hace 2 años
padre
commit
3dda738205
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  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