mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-13 01:28:24 -05:00
14 lines
321 B
Lua
14 lines
321 B
Lua
|
return require('nnn').setup {
|
||
|
set_default_mappings = false,
|
||
|
session = 'global',
|
||
|
layout = {
|
||
|
window = { width = 0.8, height = 0.8, highlight = 'Debug' },
|
||
|
},
|
||
|
command = 'nnn -HUdex',
|
||
|
action = {
|
||
|
['<c-t>'] = 'tab split',
|
||
|
['<c-h>'] = 'split',
|
||
|
['<c-v>'] = 'vsplit'
|
||
|
}
|
||
|
}
|