dotfiles/config/nvim/lua/fschauen/plugins/indent-blankline.lua

32 lines
518 B
Lua

local M = { 'lukas-reineke/indent-blankline.nvim' }
M.config = function()
require('ibl').setup {
enabled = false,
indent = {
char = '',
},
scope = {
char = '',
enabled = false,
show_start = false,
show_end = false,
},
}
end
M.cmd = {
'IBLEnable',
'IBLDisable',
'IBLToggle',
'IBLEnableScope',
'IBLDisableScope',
'IBLToggleScope',
}
M.keys = {
{ '<leader>si', '<cmd>IBLToggle<cr>' },
{ '<leader>so', '<cmd>IBLToggleScope<cr>' },
}
return M