1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +02:00

nvim/lua/user/plugins/lang/go.lua: make sure mason installs required tools.

This commit is contained in:
Henrik Hautakoski 2025-03-23 16:25:16 +01:00
parent b4116a78f5
commit 47b091705c

View file

@ -59,6 +59,13 @@ return {
servers = lspservers
},
},
{
"williamboman/mason.nvim",
opttional = true,
opts = {
ensure_installed = { "goimports", "gofumpt", "gomodifytags", "impl" }
},
},
{
"nvim-neotest/neotest",
optional = true,