Create movement.lua

This commit is contained in:
Rawley Fowler 2022-07-24 20:24:07 -06:00 committed by GitHub
parent 8c98a88048
commit 1ad4648cc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,9 @@
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>')