aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustine Smithies <justine@smithies.me.uk>2024-05-13 19:40:49 +0100
committerJustine Smithies <justine@smithies.me.uk>2024-05-13 19:40:49 +0100
commit1d20b576d1f5e4d88a670738be70e3bfac0c2e97 (patch)
treea3e34517cf0a570153f080d9ae9ab74b83d2d7ad
parent2f9d77071dceb4bb56ccd3d806a43f68c382c943 (diff)
Moved some key binds into a config mode section
-rw-r--r--.config/helix/config.toml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.config/helix/config.toml b/.config/helix/config.toml
index 46f8772..ad170fc 100644
--- a/.config/helix/config.toml
+++ b/.config/helix/config.toml
@@ -36,10 +36,6 @@ display-messages = true
display-inlay-hints = true
[keys.normal]
-C-g = ":toggle-option indent-guides.render"
-C-o = ":config-open"
-C-r = ":config-reload"
-C-l = ":o ~/.config/helix/languages.toml"
# Move line up/down
A-k = [
"extend_to_line_bounds",
@@ -58,3 +54,10 @@ A-j = [
[keys.normal.space.space]
h = ':set gutters ["diagnostics","spacer","diff"]'
s = ':set gutters ["diagnostics","spacer","line-numbers","spacer","diff"]'
+
+# Config Mode
+[keys.normal."C-backspace"]
+o = ":config-open"
+r = ":config-reload"
+l = ":o ~/.config/helix/languages.toml"
+g = ":toggle-option indent-guides.render"