Skip to content

Commit 7d205f9

Browse files
committed
Add indent_line
1 parent c319407 commit 7d205f9

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ require('lazy').setup({
943943
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
944944
--
945945
-- require 'kickstart.plugins.debug',
946-
-- require 'kickstart.plugins.indent_line',
946+
require 'kickstart.plugins.indent_line',
947947
require 'kickstart.plugins.lint',
948948
-- require 'kickstart.plugins.autopairs',
949949
require 'kickstart.plugins.neo-tree',

lua/kickstart/plugins/indent_line.lua

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ return {
44
-- Enable `lukas-reineke/indent-blankline.nvim`
55
-- See `:help ibl`
66
main = 'ibl',
7-
opts = {},
7+
opts = {
8+
indent = {
9+
char = '',
10+
},
11+
scope = {
12+
enabled = false,
13+
show_start = false,
14+
show_end = false,
15+
},
16+
},
817
},
918
}

0 commit comments

Comments
 (0)