remove restic azure

This commit is contained in:
cy 2024-12-07 03:29:15 -05:00
parent 0fc512c3c6
commit e634f2a628
6 changed files with 40 additions and 48 deletions

16
nvim/lua/config/hop.lua Normal file
View 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,
})