2025-08-23T20:01:10+02:00
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user