master #1

Open
oli wants to merge 912 commits from master into lua
2 changed files with 25 additions and 1 deletions
Showing only changes of commit 36a6d599eb - Show all commits

23
lua/plugins/flash.lua Normal file
View File

@@ -0,0 +1,23 @@
return {
"folke/flash.nvim",
event = "VeryLazy",
---@type Flash.Config
opts = {},
keys = {
{
"s",
mode = { "n", "x", "o" },
function()
-- default options: exact mode, multi window, all directions, with a backdrop
require("flash").jump()
end,
},
{
"S",
mode = { "n", "o", "x" },
function()
require("flash").treesitter()
end,
},
},
}

View File

@@ -4,5 +4,6 @@ return {
config = function()
require('leap').set_default_keymaps()
end,
event = 'VeryLazy'
event = 'VeryLazy',
enabled = false
}