update neovim config
This commit is contained in:
parent
24930aa8a3
commit
805221e92c
5 changed files with 37 additions and 42 deletions
23
config/nvim/lua/aleidk/plugins/indent-blankline.lua
Normal file
23
config/nvim/lua/aleidk/plugins/indent-blankline.lua
Normal 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,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue