update neovim config

This commit is contained in:
Alexander Navarro 2023-09-13 22:16:28 -03:00
parent 24930aa8a3
commit 805221e92c
5 changed files with 37 additions and 42 deletions

View file

@ -0,0 +1,23 @@
return {
-- Add indentation guides even on blank lines
"lukas-reineke/indent-blankline.nvim",
event = { "BufReadPost", "BufNewFile" },
opts = {
-- char = "▏",
char = "",
filetype_exclude = {
"help",
"alpha",
"dashboard",
"neo-tree",
"Trouble",
"lazy",
"mason",
"notify",
"toggleterm",
"lazyterm",
},
show_trailing_blankline_indent = true,
show_current_context = true,
},
}