From c02275919e8238f2a333bedb4eca8d138b4ea567 Mon Sep 17 00:00:00 2001 From: Stefan Boca <45266795+stefanboca@users.noreply.github.com> Date: Tue, 26 Nov 2024 13:39:05 -0800 Subject: [PATCH] fix(ui): disable indent-blankline on `ft=snacks_dashboard` (#4895) ## Description `indent-blankline.nvim` would act on the snacks dashboard if it was somehow loaded while the dashboard is still open. ## Related Issue(s) ## Screenshots Fixes this: ![image](https://github.com/user-attachments/assets/1f77cf1d-c9c1-48d1-9bf3-8508782e8dd1) ## Checklist - [X] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines. --- lua/lazyvim/plugins/ui.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/lazyvim/plugins/ui.lua b/lua/lazyvim/plugins/ui.lua index 828d4d01..518d363f 100644 --- a/lua/lazyvim/plugins/ui.lua +++ b/lua/lazyvim/plugins/ui.lua @@ -216,6 +216,7 @@ return { "mason", "neo-tree", "notify", + "snacks_dashboard", "snacks_notif", "snacks_terminal", "snacks_win",