diff options
Diffstat (limited to 'public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua')
-rw-r--r-- | public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua | 29 |
1 files changed, 20 insertions, 9 deletions
diff --git a/public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua b/public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua index 618c730..8756757 100644 --- a/public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua +++ b/public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua @@ -1,11 +1,22 @@ return { - "lukas-reineke/indent-blankline.nvim", - event = { "BufRead" }, - config = function() - require("indent_blankline").setup({ - show_current_context = true, - show_current_context_start = false, - }) - end, - dependencies = { "nvim-treesitter" }, + "lukas-reineke/indent-blankline.nvim", + event = { "BufRead" }, + main = "ibl", + opts = { + indent = { + char = "▏", + tab_char = "▏", + }, + scope = { + enabled = true, + show_start = true, + show_end = true, + exclude = { + language = { + "help", + }, + }, + }, + }, + dependencies = { "nvim-treesitter" }, } |