Files
nix-config/home-manager/features/helix.nix
2024-06-01 10:25:43 +02:00

25 lines
546 B
Nix

{pkgs, ...}: {
programs.helix = {
enable = true;
# settings = {
# theme = "autumn_night_transparent";
# editor.cursor-shape = {
# normal = "block";
# insert = "bar";
# select = "underline";
# };
# };
languages.language = [{
name = "nix";
auto-format = true;
formatter.command = "${pkgs.nixfmt}/bin/nixfmt";
}];
# themes = {
# autumn_night_transparent = {
# "inherits" = "autumn_night";
# "ui.background" = { };
# };
# };
};
}