From 91f72909558c8519e12ae02f5db0dbf405c6f42c Mon Sep 17 00:00:00 2001 From: Jelle Spreeuwenberg Date: Sat, 25 Jul 2026 19:05:54 +0200 Subject: [PATCH] feat: helix changes --- modules/capabilities/helix.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/modules/capabilities/helix.nix b/modules/capabilities/helix.nix index 7b0a691..60694b6 100644 --- a/modules/capabilities/helix.nix +++ b/modules/capabilities/helix.nix @@ -1,10 +1,17 @@ { ... }: { - flake.modules.homeManager.helix = { + flake.modules.homeManager.helix = { pkgs, ... }: { programs.helix = { enable = true; + extraPackages = [ pkgs.svelte-language-server ]; + settings = { theme = "kanagawa"; + editor.cursor-shape = { + insert = "bar"; + normal = "block"; + select = "underline"; + }; }; }; };