Any colemak-dh users? #1806
Unanswered
guttermonk
asked this question in
1. Q&A
Replies: 2 comments 4 replies
-
|
For my NixOS Colemak-dhers, here's a jumping off point: Please share your config if you're also in this 1% club. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
I'm actually using colemak dh and nixOS as well I don't think remapping vim keys to their colemak-dh equivalents is worth the effort though, especially if you can remap your keyboard to have layers and modifiers. keymap = {
mgr.prepend_keymap = [
{
on = ["g" "v"];
run = "cd ~/Vault";
desc = "Goto Vault";
}
{
on = ["g" "."];
run = "cd ~/.dotfiles";
desc = "Goto dotfiles";
}
{
on = ["g" "p"];
run = "cd ~/Projects";
desc = "Goto Projects";
}
{
on = "<F9>";
run = "quit";
desc = "Quit the process";
}
{
on = "<C-c>";
run = ["plugin wl-clipboard" "yank"];
}
{
on = "<C-v>";
run = "paste";
}
{
on = "<C-t>";
run = "tab_create --current";
}
{
on = "<C-w>";
run = "close";
}
{
on = "<C-PageUp>";
run = "tab_switch -1 --relative";
}
{
on = "<C-PageDown>";
run = "tab_switch 1 --relative";
}
];
input.prepend_keymap = [
{
on = "<Esc>";
run = "close";
desc = "cancel input";
}
];
}; |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Any colemak-dh users willing to share their yazi keybinding config?
Beta Was this translation helpful? Give feedback.
All reactions