all repos — dotfiles @ a52c2181fabe3eab31781b8d59101a84d6138a7f

my *nix dotfiles

config/nvim/lua/lsp/go.lua (view raw)

 1require('lspconfig').gopls.setup {
 2  filetypes = { 'go', 'gomod' },
 3  gopls = {
 4    experimentalPostfixCompletions = true,
 5    analyses = {
 6      unusedparams = true,
 7      shadow = true,
 8    },
 9    staticcheck = true,
10  },
11  on_attach = require('maps').on_attach,
12}