Compare commits

...

2 commits

Author SHA1 Message Date
80eaacd3a3 Common/helix: add nixpkgs-fmt (nix formatter) 2024-02-09 01:06:06 +01:00
93f60414ac Common/helix: add nil (nix lsp) 2024-02-09 01:04:09 +01:00

View file

@ -5,7 +5,11 @@
programs.helix = {
enable = true;
defaultEditor = true;
settings = {
extraPackages = with pkgs; [
nixpkgs-fmt
nil
];
settings = {
theme = "catppuccin_mocha";
editor = {
mouse = true;
@ -18,6 +22,12 @@
indent-guides.render = true;
};
};
languages = [
{
name = "nix";
formatter.command = "nixpkgs-fmt";
}
];
};
};
}