summaryrefslogtreecommitdiff
path: root/nixvim/plugins/flash.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixvim/plugins/flash.nix')
-rw-r--r--nixvim/plugins/flash.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixvim/plugins/flash.nix b/nixvim/plugins/flash.nix
new file mode 100644
index 0000000..00f6c05
--- /dev/null
+++ b/nixvim/plugins/flash.nix
@@ -0,0 +1,29 @@
+{ helpers, ... }:
+{
+ keymaps = [
+ {
+ action = helpers.mkRaw ''
+ function()
+ require("flash").jump()
+ end
+ '';
+
+ key = "s";
+
+ options = {
+ noremap = true;
+ silent = true;
+ };
+
+ mode = [
+ "n"
+ "o"
+ "x"
+ ];
+ }
+ ];
+
+ plugins.flash = {
+ enable = true;
+ };
+}