first commit

This commit is contained in:
captain 2024-10-07 15:29:32 +08:00
commit 6955e90e07
61 changed files with 3641 additions and 0 deletions

19
lua/lazy/plugins/jump.lua Normal file
View file

@ -0,0 +1,19 @@
return {
"folke/flash.nvim",
event = "VeryLazy",
config = function()
require('flash').setup {
labels = "arstdhneioqwfpgjluyzxcvbkm",
modes = {
-- options used when flash is activated through
-- a regular search with `/` or `?`
search = {
-- when `true`, flash will be activated during regular search by default.
-- You can always toggle when searching with `require("flash").toggle()`
enabled = true,
},
}
}
end
}