From 57b7a0738b32afd562e28abc52a1b29aaed8b031 Mon Sep 17 00:00:00 2001 From: Minijackson Date: Wed, 25 Sep 2024 21:46:27 +0200 Subject: common/nixvim: fmt --- common/nixvim.nix | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) (limited to 'common') diff --git a/common/nixvim.nix b/common/nixvim.nix index 68a4905..46c0a12 100644 --- a/common/nixvim.nix +++ b/common/nixvim.nix @@ -204,28 +204,44 @@ in { key = ""; - mode = ["n" "x" "o"]; + mode = [ + "n" + "x" + "o" + ]; action = "(leap-forward)"; options.desc = "Leap forward to"; } { key = ""; - mode = ["n" "x" "o"]; + mode = [ + "n" + "x" + "o" + ]; action = "(leap-backward)"; options.desc = "Leap backward to"; } { key = "g"; - mode = ["n" "x" "o"]; + mode = [ + "n" + "x" + "o" + ]; action = "(leap-from-window)"; options.desc = "Leap from window"; } { key = "gnn"; - mode = ["n" "x" "o"]; + mode = [ + "n" + "x" + "o" + ]; action.__raw = '' function() require('leap.treesitter').select() @@ -236,7 +252,11 @@ in { key = "gnN"; - mode = ["n" "x" "o"]; + mode = [ + "n" + "x" + "o" + ]; action = "Vlua require('leap.treesitter').select()"; options.desc = "Start linewise incremental selection"; } -- cgit v1.2.3