Dot_Files/.config/nvim/lua/plugins/configs/hydra.lua

14 lines
272 B
Lua
Raw Normal View History

2022-06-30 11:24:26 -05:00
local hydra = require('hydra')
hydra({
name = 'Side scroll',
mode = 'n',
body = 'z',
heads = {
{ 'h', '5zh' },
{ 'l', '5zl', { desc = '←/→' } },
{ 'H', 'zH' },
{ 'L', 'zL', { desc = 'half screen ←/→' } },
},
})