rm dotbot; move everything to home manager
This commit is contained in:
parent
cedd2c1983
commit
c1b64baea7
39 changed files with 7 additions and 37 deletions
16
home/nvim/lua/config/hop.lua
Normal file
16
home/nvim/lua/config/hop.lua
Normal file
|
@ -0,0 +1,16 @@
|
|||
local hop = require('hop')
|
||||
local keymap = vim.keymap
|
||||
|
||||
hop.setup {
|
||||
case_insensitive = true;
|
||||
char2_fallback_key = "<CR>",
|
||||
quit_key = "<Esc",
|
||||
}
|
||||
|
||||
keymap.set({ 'n', 'v', 'o' }, 'f', "", {
|
||||
silent = true;
|
||||
noremap = true;
|
||||
callback = function()
|
||||
hop.hint_char2()
|
||||
end,
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue