14 lines
319 B
Lua
Raw Normal View History

2021-07-14 16:23:24 +03:00
return require('nnn').setup {
set_default_mappings = false,
session = 'global',
layout = {
2021-07-21 04:58:10 +03:00
window = {width = 0.8, height = 0.8, highlight = 'Debug'},
2021-07-14 16:23:24 +03:00
},
command = 'nnn -HUdex',
action = {
['<c-t>'] = 'tab split',
['<c-h>'] = 'split',
['<c-v>'] = 'vsplit'
}
}