32 lines
518 B
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
|