From c12283d7c563580ac0778d2b97e5723487bad8ec Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Mon, 12 Feb 2024 00:17:36 +0100 Subject: [PATCH] ft(helix): render spaces and lsp inlay hints --- files/helix/.config/helix/config.toml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/files/helix/.config/helix/config.toml b/files/helix/.config/helix/config.toml index 5f44d5c..b393e8a 100644 --- a/files/helix/.config/helix/config.toml +++ b/files/helix/.config/helix/config.toml @@ -3,8 +3,13 @@ theme = "everforest_light" [editor] line-number = "relative" cursor-shape.insert = "bar" -whitespace.render.tab = "all" -soft-wrap.enable = true + +[editor.whitespace.render] +tab = "all" +space = "all" + +[editor.lsp] +display-inlay-hints = true [keys.normal] "_" = ["extend_line_up", "extend_to_line_bounds"]