diff options
Diffstat (limited to 'lua/plugins/indent-blankline.lua')
| -rw-r--r-- | lua/plugins/indent-blankline.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/plugins/indent-blankline.lua b/lua/plugins/indent-blankline.lua new file mode 100644 index 0000000..ac33ea1 --- /dev/null +++ b/lua/plugins/indent-blankline.lua @@ -0,0 +1,13 @@ +return { + "lukas-reineke/indent-blankline.nvim", + main = "ibl", + opts = {}, + config = function() + require("ibl").setup({ + whitespace = { + remove_blankline_trail = true, + }, + scope = { enabled = false }, + }) + end, +} |
