From 2f1af4da8bc4be86d78101fa311c28928cd1bc9b Mon Sep 17 00:00:00 2001 From: gwbeip Date: Sun, 14 Jun 2026 13:26:50 +0800 Subject: [PATCH] feat(helix): add leader+l keymap to toggle line-number mode --- helix/config.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/helix/config.toml b/helix/config.toml index cc16d11..2514fb6 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -10,6 +10,7 @@ auto-format = true trim-trailing-whitespace = true insert-final-newline = true scrolloff = 5 + [editor.cursor-shape] normal = "block" insert = "bar" @@ -34,3 +35,7 @@ skip-level = 1 [editor.file-picker] hidden = false parents = false + +[keys.normal.space.l] +r = ":set line-number relative" +a = ":set line-number absolute"