Skip to content
This repository was archived by the owner on Apr 16, 2024. It is now read-only.

Commit c92e119

Browse files
committed
feat: update indent_blankline config
1 parent 4fc64fc commit c92e119

File tree

1 file changed

+8
-6
lines changed
  • lua/doom/modules/features/indentlines

1 file changed

+8
-6
lines changed

lua/doom/modules/features/indentlines/init.lua

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
local indentlines = {}
22

33
indentlines.settings = {
4-
char = "",
5-
use_treesitter = true,
6-
show_first_indent_level = false,
7-
filetype_exclude = { "help", "dashboard", "packer", "norg", "DoomInfo" },
8-
buftype_exclude = { "terminal" },
4+
indent = {
5+
char = "",
6+
},
7+
exclude = {
8+
filetypes = { "help", "dashboard", "packer", "norg", "DoomInfo" },
9+
buftypes = { "terminal" },
10+
}
911
}
1012

1113
indentlines.packages = {
@@ -16,7 +18,7 @@ indentlines.packages = {
1618

1719
indentlines.configs = {}
1820
indentlines.configs["indent-blankline.nvim"] = function()
19-
require("indent_blankline").setup(
21+
require("ibl").setup(
2022
vim.tbl_deep_extend("force", doom.features.indentlines.settings, {
2123
-- To remove indent lines, remove the module. Having the module and
2224
-- disabling it makes no sense.

0 commit comments

Comments
 (0)