diff options
| author | Trey Bastian <hello@treybastian.com> | 2026-03-06 22:05:33 +0000 |
|---|---|---|
| committer | Trey Bastian <hello@treybastian.com> | 2026-03-06 22:05:33 +0000 |
| commit | 6ad04b31b1b8c91f5f491d272a38d2eeeb56e3ca (patch) | |
| tree | 8b58355be4f74223d46a8fa8bfd1f51739c551ea /lua/config/mason.lua | |
| parent | 7f72818a2a8b79dd0f88157bfff430a2c08b0242 (diff) | |
added rust support again
Diffstat (limited to 'lua/config/mason.lua')
| -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 b32bd47..22f5d2c 100644 --- a/lua/config/mason.lua +++ b/lua/config/mason.lua @@ -58,5 +58,11 @@ require("mason-tool-installer").setup({ return vim.fn.executable("java") == 1 end, }, + { + "rust_analyzer", + condition = function() + return vim.fn.executable("rustc") == 1 + end, + }, }, }) |
