You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
254 B
Lua

local nnoremap = require('rf.binds').nnoremap
local nmap = require('rf.binds').nmap
-- Buffer cycling
nnoremap('<C-h>', ':bprev<cr>')
nnoremap('<C-l>', ':bnext<cr>')
-- Fuzzy finder (fzf)
nmap('<C-f>', ':Rg<cr>')
-- NetRW
nnoremap('<S-w>', ':Ex<cr>')