diff --git a/config/default.nix b/config/default.nix index 9d9f5d3..3af2f1c 100644 --- a/config/default.nix +++ b/config/default.nix @@ -47,26 +47,25 @@ }; }; - keymaps = [ - { - key = "s"; - action.__raw = '' - function() - -- type two letters and jump to that bigram anywhere - require("hop").hint_char2({ - current_line_only = false, - multi_windows = false, -- set true if you want to hop across all windows - }) - end - ''; - options = { remap = true; }; - } - ]; - # Nix expressions in Neovim nix.enable = true; }; + keymaps = [ + { + key = "s"; + action.__raw = '' + function() + -- type two letters and jump to that bigram anywhere + require("hop").hint_char2({ + current_line_only = false, + multi_windows = false, -- set true if you want to hop across all windows + }) + end + ''; + options = { remap = true; }; + } + ]; }