Skip to content

Commit

Permalink
feat(flash): added flash.nvim
Browse files Browse the repository at this point in the history
  • Loading branch information
realeinherjar committed Sep 5, 2023
1 parent 6330869 commit 5af77c2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,28 @@ require("lazy").setup({
{ "<leader>]t", "<CMD>require('todo-comments').jump_next()<CR>", desc = "Next Todo" },
},
},
{
"folke/flash.nvim",
event = "VeryLazy",
keys = {
{
"s",
mode = { "n", "o", "x" },
function()
require("flash").jump()
end,
desc = "Flash",
},
{
"r",
mode = "o",
function()
require("flash").remote()
end,
desc = "Remote Flash",
},
},
},
})

-- The line beneath this is called `modeline`. See `:help modeline`
Expand Down

0 comments on commit 5af77c2

Please sign in to comment.