feat: helix changes

This commit is contained in:
2026-07-25 19:05:54 +02:00
parent bcb3f65595
commit 91f7290955
+8 -1
View File
@@ -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";
};
};
};
};