1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 18:53:51 +00:00
ultima/modules/home/programs/cli/helix/binds.nix
2024-12-20 22:10:11 +09:00

25 lines
553 B
Nix

{
programs.helix.settings.keys = {
normal = {
y = "yank";
Y = "yank_to_clipboard";
D = "delete_selection_noyank";
space = {
space = "file_picker";
c = "toggle_comments";
f = "file_picker_in_current_directory";
F = "file_picker";
b = {
b = "buffer_picker";
n = ":buffer-next";
p = ":buffer-previous";
d = ":buffer-close";
D = ":buffer-close!";
O = ":buffer-close-others";
};
};
};
insert = { };
};
}