feat: add auto-save plugin with toggle mapping;
feat: windsurf is back; feat: add html snippet for boilerplate; refactor: lsp config due to deprecation; refactor: update hop mappings to current-line only with offsets; chore: adjust base02 color in kolyan theme
This commit is contained in:
@@ -1,20 +1,27 @@
|
||||
return {
|
||||
{
|
||||
'smoka7/hop.nvim',
|
||||
version = "*",
|
||||
opts = {
|
||||
multi_windows = true,
|
||||
keys = 'asdfghjklcvnmqp', --'etovxqpdygfblzhckisuran',
|
||||
uppercase_labels = true
|
||||
},
|
||||
keys = {
|
||||
{
|
||||
"<leader>gg",
|
||||
function()
|
||||
require("hop").hint_words()
|
||||
end,
|
||||
mode = {"n", "x", "o", "v"}
|
||||
}
|
||||
{
|
||||
'smoka7/hop.nvim',
|
||||
version = "*",
|
||||
opts = {
|
||||
multi_windows = true,
|
||||
keys = 'asdfghjklcvnmqp', --'etovxqpdygfblzhckisuran',
|
||||
uppercase_labels = true
|
||||
},
|
||||
keys = {
|
||||
{
|
||||
"<leader>gg",
|
||||
function()
|
||||
require("hop").hint_words()
|
||||
end,
|
||||
mode = {"n", "x", "o", "v"}
|
||||
},
|
||||
{
|
||||
"<leader>gf",
|
||||
function ()
|
||||
require("hop").hint_patterns()
|
||||
end,
|
||||
mode = {"n", "x", "o", "v"}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user