diff options
Diffstat (limited to '.config/nvim/ftplugin/go.lua')
-rw-r--r-- | .config/nvim/ftplugin/go.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.config/nvim/ftplugin/go.lua b/.config/nvim/ftplugin/go.lua new file mode 100644 index 0000000..56b9cac --- /dev/null +++ b/.config/nvim/ftplugin/go.lua @@ -0,0 +1,12 @@ +require("lspconfig").gopls.setup { + cmd = { DATA_PATH .. "/lspinstall/go/gopls" }, + settings = { gopls = { analyses = { unusedparams = true }, staticcheck = true } }, + root_dir = require("lspconfig").util.root_pattern(".git", "go.mod"), + init_options = { usePlaceholders = true, completeUnimported = true }, + on_attach = require("lsp").common_on_attach, +} + +vim.opt_local.tabstop = 4 +vim.opt_local.shiftwidth = 4 +vim.opt_local.softtabstop = 4 +vim.opt_local.expandtab = false |