FollieHiyuki-dotfiles/home/.config/nvim/lua/modules/picker.lua
2021-10-17 21:48:05 +07:00

14 lines
319 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'
}
}