nix-config/users/mara/config/helix.nix
2025-12-17 12:59:28 +01:00

32 lines
608 B
Nix

{ pkgs, ... }:
{
programs.helix = {
enable = true;
defaultEditor = true;
settings = {
theme = "catppuccin_macchiato";
editor = {
cursorline = true;
color-modes = true;
true-color = true;
cursor-shape.insert = "bar";
indent-guides.render = true;
};
};
languages.language = [
{
name = "nix";
auto-format = true;
formatter.command = "${pkgs.nixfmt}/bin/nixfmt";
}
];
themes.catppuccin_macchiato = {
inherits = "catppuccin_macchiato";
"ui.background" = { };
};
};
}