feat: add dashboard + persistenace

This commit is contained in:
Stevan Freeborn
2025-01-26 21:17:01 -06:00
parent 7727a6f3d4
commit 53ca4b891a
4 changed files with 100 additions and 2 deletions
+4 -2
View File
@@ -15,7 +15,6 @@ return {
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
config = function()
local highlight = {
"RainbowRed",
"RainbowYellow",
@@ -40,7 +39,10 @@ return {
vim.g.rainbow_delimiters = { highlight = highlight }
require("ibl").setup({ scope = { highlight = highlight } })
require("ibl").setup({
scope = { highlight = highlight },
exclude = { filetypes = { "dashboard" } },
})
hooks.register(hooks.type.SCOPE_HIGHLIGHT, hooks.builtin.scope_highlight_from_extmark)
end,