mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Add multicursor escape
This commit is contained in:
parent
2c432a9441
commit
5f6f020888
2 changed files with 20 additions and 15 deletions
|
|
@ -14,10 +14,10 @@
|
||||||
keybindings = let
|
keybindings = let
|
||||||
modifier = config.xsession.windowManager.i3.config.modifier;
|
modifier = config.xsession.windowManager.i3.config.modifier;
|
||||||
in lib.mkOptionDefault {
|
in lib.mkOptionDefault {
|
||||||
"${modifier}+h" = "move left";
|
"${modifier}+h" = "focus left";
|
||||||
"${modifier}+j" = "move down";
|
"${modifier}+j" = "focus down";
|
||||||
"${modifier}+k" = "move up";
|
"${modifier}+k" = "focus up";
|
||||||
"${modifier}+l" = "move right";
|
"${modifier}+l" = "focus right";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -7,17 +7,22 @@
|
||||||
programs.helix = {
|
programs.helix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings.editor = {
|
settings = {
|
||||||
line-number = "relative";
|
keys.normal = {
|
||||||
completion-replace = true;
|
"esc" = ["collapse_selection" "keep_primary_selection"];
|
||||||
bufferline = "always";
|
};
|
||||||
rulers = [80];
|
editor = {
|
||||||
soft-wrap.enable = true;
|
line-number = "relative";
|
||||||
indent-guides.render = true;
|
completion-replace = true;
|
||||||
cursor-shape = {
|
bufferline = "always";
|
||||||
normal = "block";
|
rulers = [80];
|
||||||
insert = "bar";
|
soft-wrap.enable = true;
|
||||||
select = "underline";
|
indent-guides.render = true;
|
||||||
|
cursor-shape = {
|
||||||
|
normal = "block";
|
||||||
|
insert = "bar";
|
||||||
|
select = "underline";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue