aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorTrey Bastian <hello@treybastian.com>2026-03-18 08:10:48 +0000
committerTrey Bastian <hello@treybastian.com>2026-03-18 08:10:48 +0000
commite40ca3b6c4a2508d76e2abb1a42ec6668f22a6cc (patch)
tree1a4057f7c557b3f36080abd1e46d8237e676c911 /lua
parent544bd61c6408fe4b39eacad477382fdff022cd59 (diff)
added gopls to mason installer
Diffstat (limited to 'lua')
-rw-r--r--lua/config/mason.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/config/mason.lua b/lua/config/mason.lua
index 4e89a26..eb0117e 100644
--- a/lua/config/mason.lua
+++ b/lua/config/mason.lua
@@ -77,6 +77,12 @@ require("mason-tool-installer").setup({
end,
},
{
+ "gopls",
+ condition = function()
+ return vim.fn.executable("go") == 1
+ end,
+ },
+ {
"delve",
condition = function()
return vim.fn.executable("go") == 1