From a552cbda8dcf869f346d4216086c31148820b164 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Thu, 10 Nov 2022 15:07:05 +0100 Subject: [PATCH] helix: Force true-color. Added typescript package for LSP. Render whitespaces --- roles/home/helix.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/home/helix.nix b/roles/home/helix.nix index 0240d18..0227bb8 100644 --- a/roles/home/helix.nix +++ b/roles/home/helix.nix @@ -12,6 +12,7 @@ [editor] cursorline = true + true-color = true [editor.cursor-shape] insert = "bar" @@ -23,6 +24,9 @@ [editor.indent-guides] render = true + + [editor.whitespace] + render = "all" ''; packages = with pkgs.unstable; [ @@ -32,6 +36,7 @@ rnix-lsp python310Packages.python-lsp-server texlab + nodePackages.typescript ]; }; }