aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/helix/config.toml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.config/helix/config.toml b/.config/helix/config.toml
index 86aeed6..f3eaacb 100644
--- a/.config/helix/config.toml
+++ b/.config/helix/config.toml
@@ -39,6 +39,20 @@ display-inlay-hints = true
C-g = ":toggle-option indent-guides.render"
C-o = ":config-open"
C-r = ":config-reload"
+# Move line up/down
+A-k = [
+ "extend_to_line_bounds",
+ "delete_selection",
+ "move_line_up",
+ "paste_before"
+]
+
+A-j = [
+ "extend_to_line_bounds",
+ "delete_selection",
+ "move_line_down",
+ "paste_before"
+]
[keys.normal.space.space]
h = ':set gutters ["diagnostics","spacer","diff"]'