From 272f6af842eb66b6e6cbdea211b17a1196acdff5 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sun, 2 Jul 2023 12:57:47 +0200 Subject: [PATCH] feat(rust): make mason optional --- lua/lazyvim/plugins/extras/lang/rust.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/lazyvim/plugins/extras/lang/rust.lua b/lua/lazyvim/plugins/extras/lang/rust.lua index c59cd13a..3761325f 100644 --- a/lua/lazyvim/plugins/extras/lang/rust.lua +++ b/lua/lazyvim/plugins/extras/lang/rust.lua @@ -32,6 +32,7 @@ return { -- Ensure Rust debugger is installed { "williamboman/mason.nvim", + optional = true, opts = function(_, opts) if type(opts.ensure_installed) == "table" then vim.list_extend(opts.ensure_installed, { "codelldb" })