mirror of
https://github.com/Iron-E/nvim-libmodal
synced 2024-11-10 13:10:29 +00:00
9 lines
166 B
Lua
9 lines
166 B
Lua
local libmodal = require('libmodal')
|
|
local barModeCombos = {
|
|
['zf'] = 'split',
|
|
['zfo'] = 'vsplit',
|
|
['zfc'] = 'tabnew'
|
|
}
|
|
|
|
libmodal.mode.enter('BAR', barModeCombos)
|