more vim-like bindings in helix
This commit is contained in:
parent
1c9bae290c
commit
dfdf863c46
1 changed files with 30 additions and 0 deletions
|
@ -13,9 +13,39 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = inputs.helix.packages."${system}".helix;
|
package = inputs.helix.packages."${system}".helix;
|
||||||
settings = {
|
settings = {
|
||||||
|
editor = {
|
||||||
|
auto-pairs = false;
|
||||||
|
lsp.display-messages = true;
|
||||||
|
line-number = "relative";
|
||||||
|
};
|
||||||
keys.normal = {
|
keys.normal = {
|
||||||
C-p = "file_picker";
|
C-p = "file_picker";
|
||||||
C-b = "buffer_picker";
|
C-b = "buffer_picker";
|
||||||
|
"{" = ["goto_prev_paragraph" "collapse_selection"];
|
||||||
|
"}" = ["goto_next_paragraph" "collapse_selection"];
|
||||||
|
"0" = "goto_line_start";
|
||||||
|
"$" = "goto_line_end";
|
||||||
|
"^" = "goto_first_nonwhitespace";
|
||||||
|
G = "goto_file_end";
|
||||||
|
V = ["select_mode" "extend_to_line_bounds"];
|
||||||
|
};
|
||||||
|
select = {
|
||||||
|
"{" = ["extend_to_line_bounds" "goto_prev_paragraph"];
|
||||||
|
"}" = ["extend_to_line_bounds" "goto_next_paragraph"];
|
||||||
|
"0" = "goto_line_start";
|
||||||
|
"$" = "goto_line_end";
|
||||||
|
"^" = "goto_first_nonwhitespace";
|
||||||
|
G = "goto_file_end";
|
||||||
|
D = ["extend_to_line_bounds" "delete_selection" "normal_mode"];
|
||||||
|
C = ["goto_line_start" "extend_to_line_bounds" "change_selection"];
|
||||||
|
"%" = "match_brackets";
|
||||||
|
V = ["extend_to_line_bounds"];
|
||||||
|
|
||||||
|
i = "select_textobject_inner";
|
||||||
|
a = "select_textobject_around";
|
||||||
|
|
||||||
|
k = ["extend_line_up" "extend_to_line_bounds"];
|
||||||
|
j = ["extend_line_down" "extend_to_line_bounds"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
languages = [
|
languages = [
|
||||||
|
|
Loading…
Reference in a new issue