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 | |
parent | b01ffbfe48b87c2e62dfbad4f3c939cedfeed479 (diff) | |
download | dotfiles-c5b2d56ca133474f1803467e046a98bed3274b85.tar.gz |
update indent-blankline
Diffstat (limited to 'public')
-rw-r--r-- | public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua | 29 | ||||
-rw-r--r-- | public/nvim/.nvim/lua/plugins/eyecandy/themes.lua | 1 |
2 files changed, 21 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" }, } diff --git a/public/nvim/.nvim/lua/plugins/eyecandy/themes.lua b/public/nvim/.nvim/lua/plugins/eyecandy/themes.lua index 69bbe99..42e5d6c 100644 --- a/public/nvim/.nvim/lua/plugins/eyecandy/themes.lua +++ b/public/nvim/.nvim/lua/plugins/eyecandy/themes.lua @@ -9,6 +9,7 @@ return { catp.setup({ flavour = "frappe", integrations = { + indent_blankline = true, which_key = true, illuminate = true, lsp_trouble = true, |