aboutsummaryrefslogtreecommitdiff
path: root/lua/config/mason.lua
diff options
context:
space:
mode:
authorTrey Bastian <hello@treybastian.com>2026-03-25 08:07:55 +0000
committerTrey Bastian <hello@treybastian.com>2026-03-25 08:07:55 +0000
commit8dc7082ffffbff3a4851ca85ae1ff2c0f38bfc5c (patch)
treef2c3ac36e24778eaed5b90f968ec5d44911d7de4 /lua/config/mason.lua
parente40ca3b6c4a2508d76e2abb1a42ec6668f22a6cc (diff)
added protobuf support
Diffstat (limited to 'lua/config/mason.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 eb0117e..a38c578 100644
--- a/lua/config/mason.lua
+++ b/lua/config/mason.lua
@@ -88,5 +88,11 @@ require("mason-tool-installer").setup({
return vim.fn.executable("go") == 1
end,
},
+ {
+ "buf",
+ condition = function()
+ return vim.fn.executable("protoc") == 1
+ end,
+ },
},
})