nvim-config/lua/configs/indent-blankline.lua

20 lines
246 B
Lua
Raw Normal View History

2022-02-28 14:54:52 +00:00
local M = {}
function M.config()
2024-01-05 00:10:59 +00:00
local status_ok, indent_blankline = pcall(require, 'ibl')
2022-02-28 14:54:52 +00:00
if not status_ok then
return
end
2023-01-10 18:21:09 +00:00
indent_blankline.setup({
2024-01-05 00:10:59 +00:00
indent = {
char = '',
},
scope = {
enabled = false,
}
2023-01-10 18:21:09 +00:00
})
2022-02-28 14:54:52 +00:00
end
return M