From 88592b7678693c57c189cb2d97f46e0841f974a2 Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Sat, 27 Jan 2024 13:51:37 +0100 Subject: [PATCH] helix: change cursor shape owhen insert mode to 'bar' --- editor/helix/config.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/editor/helix/config.toml b/editor/helix/config.toml index 050b653..d56ccb5 100644 --- a/editor/helix/config.toml +++ b/editor/helix/config.toml @@ -3,6 +3,11 @@ theme="sonokai" [editor.soft-wrap] enable = true +[editor.cursor-shape] +insert = "bar" +normal = "block" +select = "block" + [keys.normal] backspace = {r = ":sh cargo run", p = ":sh python src/main.py"} a = ["ensure_selections_forward", "collapse_selection", "move_char_right", "insert_mode"]