nix fmt to update lua files

This commit is contained in:
cy 2024-12-28 11:45:03 -05:00
parent 330feb587f
commit 2fd7a24284
6 changed files with 219 additions and 219 deletions

View file

@ -1,16 +1,16 @@
local hop = require('hop')
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' }, '<C-t>', "", {
silent = true;
noremap = true;
callback = function()
hop.hint_char1()
end,
hop.setup({
case_insensitive = true,
char2_fallback_key = "<CR>",
quit_key = "<Esc",
})
keymap.set({ "n", "v", "o" }, "<C-t>", "", {
silent = true,
noremap = true,
callback = function()
hop.hint_char1()
end,
})