diff --git a/.config/nvim/lua/plugins/indent-blankline.lua b/.config/nvim/lua/plugins/indent-blankline.lua index af06198..3beed39 100644 --- a/.config/nvim/lua/plugins/indent-blankline.lua +++ b/.config/nvim/lua/plugins/indent-blankline.lua @@ -3,6 +3,41 @@ return { event = { "BufReadPre", "BufNewFile" }, main = "ibl", opts = { - indent = { char = "┊" }, + indent = { + char = "┊", + smart_indent_cap = true, + highlight = { + -- indent coloring for nord theme + -- FIX: set these up manually? + "Headline6", + "Headline5", + "Headline4", + "Headline3", + "Headline2", + "Headline1", + }, + }, + scope = { + enabled = true, + show_start = true, + show_end = true, + -- highlight = { "Function", "Label" }, + char = "▎", + }, + exclude = { + filetypes = { + "lspinfo", + "checkhealth", + "help", + "man", + "gitcommit", + "TelescopePrompt", + "TelescopeResults", + "", + "dashboard", + "alpha", + "NvimTree", + }, + }, }, }