diff --git a/config/nvim/lua/aleidk/plugins/colorscheme.lua b/config/nvim/lua/aleidk/plugins/colorscheme.lua index da23982..b992c18 100644 --- a/config/nvim/lua/aleidk/plugins/colorscheme.lua +++ b/config/nvim/lua/aleidk/plugins/colorscheme.lua @@ -7,6 +7,11 @@ return { -- Change colors.none if not using a transparent background transparent_background = false, integrations = { cmp = true, + indent_blankline = { + enabled = true, + scope_color = "lavender", -- catppuccin color (eg. `lavender`) Default: text + colored_indent_levels = true, + }, }, custom_highlights = function(colors) return { diff --git a/config/nvim/lua/aleidk/plugins/indent-blankline.lua b/config/nvim/lua/aleidk/plugins/indent-blankline.lua index 72196c2..af8b16d 100644 --- a/config/nvim/lua/aleidk/plugins/indent-blankline.lua +++ b/config/nvim/lua/aleidk/plugins/indent-blankline.lua @@ -2,22 +2,28 @@ return { -- Add indentation guides even on blank lines "lukas-reineke/indent-blankline.nvim", event = { "BufReadPost", "BufNewFile" }, + main = "ibl", opts = { -- char = "▏", - char = "│", - filetype_exclude = { - "help", - "alpha", - "dashboard", - "neo-tree", - "Trouble", - "lazy", - "mason", - "notify", - "toggleterm", - "lazyterm", + indent = { + char = "│", + }, + scope = { + enabled = true, + }, + exclude = { + filetypes = { + "help", + "alpha", + "dashboard", + "neo-tree", + "Trouble", + "lazy", + "mason", + "notify", + "toggleterm", + "lazyterm", + }, }, - show_trailing_blankline_indent = true, - show_current_context = true, }, }