1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-16 14:12:39 +00:00
dotfiles/.config/nvim/lua/plugins/indentline.lua

15 lines
298 B
Lua
Raw Normal View History

2023-04-12 18:09:30 +00:00
require("indent_blankline").setup({
2022-10-01 11:46:18 +00:00
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",
2023-01-20 17:57:58 +00:00
"lazy",
"mason",
2022-10-04 17:04:04 +00:00
"neo-tree",
2022-10-01 11:46:18 +00:00
},
})