tangled
alpha
login
or
join now
biscui.tech
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
hx opts
biscui.tech
10 months ago
efc12137
ebd2d427
+11
-2
1 changed file
expand all
collapse all
unified
split
.config
helix
config.toml
+11
-2
.config/helix/config.toml
···
55
55
g = { a = "code_action" } # Maps `ga` to show possible code actions
56
56
"ret" = ["move_line_down", "goto_first_nonwhitespace"] # Maps the enter key to move to start of next line
57
57
"S-ret" = ["move_line_up", "goto_first_nonwhitespace"] # Maps the enter key to move to start of next line
58
58
-
X = "extend_line_above"
58
58
+
x = "select_line_below"
59
59
+
X = "select_line_above"
59
60
D = "delete_char_backward"
60
61
# y = ":clipboard-yank-join"
61
62
# Y = "yank_joined_to_clipboard"
···
73
74
# ":redraw",
74
75
# ":reload-all"
75
76
# ]
76
76
-
77
77
+
C-g = [
78
78
+
":write-all",
79
79
+
":new",
80
80
+
":insert-output lazygit",
81
81
+
# ":insert-output gitui >/dev/tty",
82
82
+
":buffer-close!",
83
83
+
":redraw",
84
84
+
":reload-all"
85
85
+
]
77
86
[keys.insert]
78
87
# j = { k = "normal_mode" } # Maps `jk` to exit insert mode
79
88