From 1f8ff76382b23aad44a02de06bd8dd0c18bc0434 Mon Sep 17 00:00:00 2001 From: filip <“filip.rabiega@gmail.com”> Date: Sun, 8 Feb 2026 22:30:05 +0100 Subject: add new plugins --- flash.lua | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 flash.lua (limited to 'flash.lua') diff --git a/flash.lua b/flash.lua new file mode 100644 index 0000000..450f34a --- /dev/null +++ b/flash.lua @@ -0,0 +1,32 @@ +return { + "folke/flash.nvim", + event = "VeryLazy", + ---@type Flash.Config + opts = {}, + keys = { + { + "r", + mode = "o", + function() + require("flash").remote() + end, + desc = "Remote Flash", + }, + { + "R", + mode = { "o", "x" }, + function() + require("flash").treesitter_search() + end, + desc = "Treesitter Search", + }, + { + "", + mode = { "c" }, + function() + require("flash").toggle() + end, + desc = "Toggle Flash Search", + }, + }, +} -- cgit v1.2.3