nvim/lua/user/indentline.lua

20 lines
465 B
Lua
Raw Normal View History

2022-10-14 17:19:21 -04:00
local enabled = false
2022-10-12 22:07:20 -04:00
local status_ok, indent_blankline = pcall(require, "indent_blankline")
2022-10-14 17:19:21 -04:00
if (not enabled) or (not status_ok) then
2022-10-12 22:07:20 -04:00
return
end
2022-10-14 17:19:21 -04:00
--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",
-- "packer",
-- "NvimTree",
-- },
--}