Files
lux/modules/capabilities/helix.nix
T
2026-07-25 19:05:54 +02:00

19 lines
363 B
Nix

{ ... }:
{
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";
};
};
};
};
}