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"; + }; }; }; };