commit 913bb9071567f8201fe635efd945a19bce1ceab5
parent 072794f3fac14544f2f192eff4419d80e81e2d6b
Author: Alex Balgavy <alex@balgavy.eu>
Date: Sun, 8 Oct 2023 15:06:08 +0200
nvim: update indent-blankline
Diffstat:
1 file changed, 4 insertions(+), 14 deletions(-)
diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua
@@ -78,10 +78,11 @@ return {
{ -- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',
+ main = 'ibl',
opts = {
- char = '┊',
- show_trailing_blankline_indent = false,
- filetype = {'python'},
+ indent = {
+ char = '┊',
+ },
}
},
@@ -154,15 +155,4 @@ return {
{ "<c-s>", mode = { "c" }, function() require("flash").toggle() end, desc = "Toggle Flash Search" },
},
},
- -- {
- -- "chrisgrieser/nvim-origami",
- -- event = "BufReadPost", -- later or on keypress would prevent saving folds
- -- opts = true, -- needed even when using default config
- -- config = function()
- -- require('origami').setup({
- -- pauseFoldsOnSearch = true,
- -- })
- -- end
- -- },
- --
}