diff --git a/lua/plugins.lua b/lua/plugins.lua index 0bca0a8..d45d7b2 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -28,6 +28,7 @@ vim.pack.add({ { src = "https://github.com/michaelrommel/nvim-silicon" }, { src = "https://github.com/hat0uma/csvview.nvim.git" }, { src = "https://github.com/Thiago4532/mdmath.nvim" }, + { src = "https://github.com/folke/snacks.nvim" }, }) pcall(vim.cmd.colorscheme, "gruvbox") @@ -74,6 +75,10 @@ require("mdmath").setup({ dynamic_scale = 0.5, }) +require("snacks").setup({ + image = { enabled = true }, +}) + -- Rebuild mdmath JS deps on plugin update vim.api.nvim_create_autocmd("PackChanged", { callback = function(ev)