From 61cf62ff0d778bef8a04a455f3521fa888115adf Mon Sep 17 00:00:00 2001 From: Jannik Donker Date: Thu, 28 May 2026 15:23:59 +0200 Subject: [PATCH] added snacks image --- lua/plugins.lua | 5 +++++ 1 file changed, 5 insertions(+) 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)