瀏覽代碼

nixpkgs/neovim: disable solargraph formatting

Thomas Dy 2 年之前
父節點
當前提交
3dda738205
共有 1 個文件被更改,包括 3 次插入0 次删除
  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