Skip to content

Commit feb6ada

Browse files
authored
Merge pull request nvim-lua#443 from emmanuelchucks/patch-1
fix(init.lua): indent blankline v3 setup
2 parents 1de5703 + 9bdda65 commit feb6ada

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

init.lua

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,12 @@ require('lazy').setup({
170170
'lukas-reineke/indent-blankline.nvim',
171171
-- Enable `lukas-reineke/indent-blankline.nvim`
172172
-- See `:help indent_blankline.txt`
173-
opts = {
174-
char = '',
175-
show_trailing_blankline_indent = false,
176-
},
173+
config = function()
174+
require('ibl').setup {
175+
char = '',
176+
show_trailing_blankline_indent = false,
177+
}
178+
end,
177179
},
178180

179181
-- "gc" to comment visual regions/lines

0 commit comments

Comments
 (0)