瀏覽代碼

nixpkgs/neovim: use only gofmt if gopls is not available

Thomas Dy 2 年之前
父節點
當前提交
466df9102f
共有 1 個文件被更改,包括 8 次插入3 次删除
  1. 8 3
      .config/nixpkgs/neovim/lsp.lua

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

@@ -17,9 +17,6 @@ if vim.fn.executable("node_modules/.bin/eslint") == 1 then
   table.insert(null_ls_sources, null_ls.builtins.code_actions.eslint_d)
 end
 
-if vim.fn.executable("gofmt") == 1 then
-  table.insert(null_ls_sources, null_ls.builtins.formatting.gofmt)
-end
 
 if vim.fn.executable("shellcheck") == 1 then
   table.insert(null_ls_sources, null_ls.builtins.diagnostics.shellcheck)
@@ -33,6 +30,14 @@ if vim.fn.executable("deno") == 1 then
   table.insert(null_ls_sources, null_ls.builtins.formatting.deno_fmt);
 end
 
+if vim.fn.executable("gopls") == 1 then
+  nvim_lsp.gopls.setup({
+    on_attach = on_attach,
+  });
+elseif vim.fn.executable("gofmt") == 1 then
+  table.insert(null_ls_sources, null_ls.builtins.formatting.gofmt)
+end
+
 if vim.fn.executable("node_modules/.bin/tsc") == 1 then
   -- this provides auto-import on completion, among other things
   local ts_utils = require("nvim-lsp-ts-utils")