Create movement.lua
This commit is contained in:
parent
8c98a88048
commit
1ad4648cc4
1 changed files with 9 additions and 0 deletions
9
neovim/after/plugin/movement.lua
Normal file
9
neovim/after/plugin/movement.lua
Normal 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>')
|
Loading…
Reference in a new issue