Skip to content

Commit

Permalink
indent: fix indent_blankline deprecated settings
Browse files Browse the repository at this point in the history
Signed-off-by: Avimitin <[email protected]>
  • Loading branch information
Avimitin committed Nov 14, 2023
1 parent a0b29df commit 95f00cf
Showing 1 changed file with 41 additions and 37 deletions.
78 changes: 41 additions & 37 deletions lua/ui/indent.lua
Original file line number Diff line number Diff line change
@@ -1,39 +1,43 @@
require("indent_blankline").setup({
indentLine_enabled = 1,
char = "",
filetype_exclude = {
"help",
"terminal",
"dashboard",
"packer",
"lspinfo",
"TelescopePrompt",
"TelescopeResults",
"startify",
"dashboard",
"dotooagenda",
"log",
"fugitive",
"gitcommit",
"packer",
"vimwiki",
"markdown",
"txt",
"vista",
"help",
"todoist",
"NvimTree",
"peekaboo",
"git",
"TelescopePrompt",
"undotree",
"flutterToolsOutline",
"lsp-installer",
"hydra_hint",
"noice",
"",
require("ibl").setup({
indent = {
char = "",
},
scope = {
show_start = false,
show_end = false,
},
exclude = {
filetypes = {
"help",
"terminal",
"dashboard",
"packer",
"lspinfo",
"TelescopePrompt",
"TelescopeResults",
"startify",
"dashboard",
"dotooagenda",
"log",
"fugitive",
"gitcommit",
"packer",
"vimwiki",
"markdown",
"txt",
"vista",
"help",
"todoist",
"NvimTree",
"peekaboo",
"git",
"TelescopePrompt",
"undotree",
"flutterToolsOutline",
"lsp-installer",
"hydra_hint",
"noice",
"",
},
},
buftype_exclude = { "terminal" },
show_trailing_blankline_indent = false,
show_first_indent_level = false,
})

0 comments on commit 95f00cf

Please sign in to comment.