Nvim: migrate indent-blankline to v3

This commit is contained in:
Marko Korhonen 2023-09-29 09:03:03 +03:00
parent 71b2b12a3f
commit 2cd94ee65f
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890

View file

@ -1,18 +1,19 @@
return function() return function()
vim.opt.list = true require("ibl").setup({
require("indent_blankline").setup({ exclude = {
space_char_blankline = " ", filetypes = {
show_current_context = true,
show_current_context_start = true,
})
vim.g.indent_blankline_filetype_exclude = {
"", "",
"checkhealth", "checkhealth",
"dashboard", "dashboard",
"git",
"gitcommit",
"TelescopePrompt",
"TelescopeResults",
"help", "help",
"lazy",
"lspinfo", "lspinfo",
"man", "man",
"lazy", },
"git", },
} })
end end