2025-08-23T20:01:10+02:00

This commit is contained in:
2025-08-23 20:01:10 +02:00
parent d74cd1d489
commit d52345680e
3 changed files with 61 additions and 26 deletions
+17
View File
@@ -30,6 +30,7 @@
bufferline.enable = true;
direnv.enable = true;
fzf-lua.enable = true;
hop.enable = true;
codecompanion = { enable = true; };
# enable all auto completion
@@ -46,6 +47,22 @@
};
};
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;