This commit is contained in:
Rasyidan Akbar F. 2025-09-26 15:50:15 +07:00
commit bcbd699c4c
11 changed files with 786 additions and 124 deletions

View file

@ -0,0 +1,20 @@
{ pkgs, lib, ... }: {
programs.helix = {
enable = lib.mkDefault true;
settings = {
theme = "gruber-darker";
editor = {
cursor-shape = {
normal = "block";
insert = "bar";
select = "underline";
};
};
};
languages.language = [{
name = "nix";
auto-format = true;
formatter.command = "${pkgs.nixfmt-classic}/bin/nixfmt";
}];
};
}