diff options
author | Christian Segundo | 2023-11-05 12:32:04 +0100 |
---|---|---|
committer | Christian Segundo | 2023-11-05 12:32:04 +0100 |
commit | c5b2d56ca133474f1803467e046a98bed3274b85 (patch) | |
tree | 2a2cd945652f9a018d27cb705c6de7dd2c54bd34 /public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua | |
parent | b01ffbfe48b87c2e62dfbad4f3c939cedfeed479 (diff) | |
download | dotfiles-c5b2d56ca133474f1803467e046a98bed3274b85.tar.gz |
update indent-blankline
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" }, } |