Update .config/nvim/lazy-lock.json

Update .config/nvim/lua/plugin/00_colorscheme.lua
Update .config/nvim/lua/plugin/10_hop.lua
Update .config/nvim/lua/plugin/20_completion.lua
Add .config/nvim/lua/plugin/35_yanky.lua
This commit is contained in:
Lewis Wynne 2025-11-03 12:41:44 +00:00
parent d463a7b8c9
commit 48524be17d
5 changed files with 77 additions and 25 deletions

View file

@ -1,12 +1,17 @@
return {
{
'smoka7/hop.nvim',
"smoka7/hop.nvim",
version = "*",
opts = {
keys = 'etovxqpdygfblzhckisuran'
keys = "etovxqpdygfblzhckisuran",
},
-- stylua: ignore
keys = {
{ "gw", "<cmd>HopWord<CR>", mode = { "n", "x" }, desc = "Hop to word" },
{ "gw", "<cmd>HopWordMW<CR>", mode = { "n", "x", "o" }, desc = "hop to word" },
{ "gc", "<cmd>HopChar1MW<CR>", mode = { "n", "x", "o" }, desc = "hop to char" },
{ "gl", "<cmd>HopLineStartMW<CR>", mode = { "n", "x", "o" }, desc = "hop to word" },
{ "gn", "<cmd>HopNodes<CR>", mode = { "n", "x", "o" }, desc = "hop nodes" },
{ "gp", "<cmd>HopPatternMW<CR>", mode = { "n", "x", "o" }, desc = "hop to pattern" },
},
}
},
}