diff --git a/modules/kakoune.nix b/modules/kakoune.nix index 1ebc20a..3b4fb0f 100644 --- a/modules/kakoune.nix +++ b/modules/kakoune.nix @@ -132,6 +132,8 @@ in { mode = "user"; docstring = "Spellcheck English"; key = "S"; effect = ":spell en"; } { mode = "user"; docstring = "Spellcheck"; key = "s"; effect = ":spell "; } { mode = "normal"; docstring = "Try next snippet placeholder"; key = ""; effect = ": insert-c-n"; } + { mode = "normal"; docstring = "Search"; key = "/"; effect = "/(?i)"; } + { mode = "normal"; docstring = "Reverse search"; key = ""; effect = "(?i)"; } ]; hooks = with pkgs; [ { name = "BufCreate"; option = ".*"; commands = "editorconfig-load"; } @@ -364,6 +366,6 @@ in mimeType = "text/plain;text/*"; }; in - builtins.toPath - "${desktopItem}/share/applications/kakoune.desktop"; + builtins.toPath + "${desktopItem}/share/applications/kakoune.desktop"; }