diff options
| author | Trey Bastian <hello@treybastian.com> | 2026-03-18 08:10:48 +0000 |
|---|---|---|
| committer | Trey Bastian <hello@treybastian.com> | 2026-03-18 08:10:48 +0000 |
| commit | e40ca3b6c4a2508d76e2abb1a42ec6668f22a6cc (patch) | |
| tree | 1a4057f7c557b3f36080abd1e46d8237e676c911 /lua/config | |
| parent | 544bd61c6408fe4b39eacad477382fdff022cd59 (diff) | |
added gopls to mason installer
Diffstat (limited to 'lua/config')
| -rw-r--r-- | lua/config/mason.lua | 6 |
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 |
