[neovim] Bump indent-blankline to 'ibl' version

This commit is contained in:
Daniel Carrillo 2023-10-09 19:50:41 +02:00
parent f408f6a703
commit 6194432e9e
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
2 changed files with 21 additions and 14 deletions

View File

@ -104,7 +104,7 @@ require("lazy").setup({
{ "akinsho/bufferline.nvim", event = "VeryLazy", version = "v4.*" },
{ "moll/vim-bbye" },
{ "nvim-lualine/lualine.nvim", event = "VeryLazy" },
{ "lukas-reineke/indent-blankline.nvim", event = "BufReadPost", version = "v2.*" },
{ "lukas-reineke/indent-blankline.nvim", event = "BufReadPost", main = "ibl" },
{ "nvim-zh/auto-save.nvim", event = "BufReadPost" },
{
"folke/noice.nvim",

View File

@ -1,15 +1,22 @@
require("indent_blankline").setup({
char = "",
show_trailing_blankline_indent = false,
show_first_indent_level = true,
use_treesitter = true,
show_current_context = true,
buftype_exclude = { "terminal", "nofile" },
filetype_exclude = {
"help",
"lazy",
"mason",
"neo-tree",
"TelescopePrompt",
require("ibl").setup({
indent = {
char = "",
tab_char = "",
},
scope = {
enabled = true,
show_start = false,
show_end = false,
},
exclude = {
filetypes = {
"help",
"mini.starter",
"neo-tree",
"Trouble",
"lazy",
"mason",
"notify",
},
},
})