Add indent_line

pull/1399/head
Nicky Obreykov 2 months ago
parent c3194074ec
commit 7d205f9332

@ -943,7 +943,7 @@ require('lazy').setup({
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
--
-- require 'kickstart.plugins.debug',
-- require 'kickstart.plugins.indent_line',
require 'kickstart.plugins.indent_line',
require 'kickstart.plugins.lint',
-- require 'kickstart.plugins.autopairs',
require 'kickstart.plugins.neo-tree',

@ -4,6 +4,15 @@ return {
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help ibl`
main = 'ibl',
opts = {},
opts = {
indent = {
char = '',
},
scope = {
enabled = false,
show_start = false,
show_end = false,
},
},
},
}

Loading…
Cancel
Save