From 17d13449cc7358c8bd14aebbcaa16ca1e1728426 Mon Sep 17 00:00:00 2001 From: Jeena Date: Sun, 18 Jan 2026 15:44:12 +0900 Subject: [PATCH] helix: Make non visible characters visible I always don't see the trailing spaces, and want to see them now. --- helix/config.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/helix/config.toml b/helix/config.toml index ea65420..cc42747 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -1,2 +1,10 @@ theme = "jeenas" editor.rulers = [80] + +[editor.whitespace] +render = "all" + +[editor.whitespace.characters] +space = "·" +tab = "→" +newline = "↵"