feat: new config with everything manually installed
This commit is contained in:
28
lua/plugins/navigation.lua
Normal file
28
lua/plugins/navigation.lua
Normal file
@@ -0,0 +1,28 @@
|
||||
return {
|
||||
-- ╭────────────╮
|
||||
-- │ Navigation │
|
||||
-- ╰────────────╯
|
||||
{
|
||||
"folke/flash.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {},
|
||||
keys = {
|
||||
{
|
||||
"s",
|
||||
mode = { "n", "x", "o" },
|
||||
function()
|
||||
require("flash").jump()
|
||||
end,
|
||||
desc = "Flash",
|
||||
},
|
||||
{
|
||||
"S",
|
||||
mode = { "n", "x", "o" },
|
||||
function()
|
||||
require("flash").treesitter()
|
||||
end,
|
||||
desc = "Flash Treesitter",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user