From f45ab786f96514c5857a3ecda2289c7f7b89a680 Mon Sep 17 00:00:00 2001 From: Sweetbread Date: Sat, 6 Dec 2025 20:41:14 +0300 Subject: [PATCH] helix: change cursor shape and add a ruler --- modules/user/helix.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/modules/user/helix.nix b/modules/user/helix.nix index 4b51679..4996dae 100644 --- a/modules/user/helix.nix +++ b/modules/user/helix.nix @@ -6,7 +6,10 @@ settings = { # theme = "catppuccin-mocha"; editor = { + rulers = [ 81 ]; insert-final-newline = false; + indent-guides.render = true; + whitespace.render = { space = "all"; tab = "all"; @@ -15,7 +18,11 @@ newline = "none"; }; - indent-guides.render = true; + cursor-shape = { + normal = "block"; + insert = "bar"; + select = "underline"; + }; }; }; };