nixos-old/helix/settings.nix

13 lines
247 B
Nix

{ pkgs, ... }:
let myConfig = import ./config.nix;
in
{
package = pkgs.helix;
enable = true;
package = pkgs.unstable.helix;
settings = {
theme = "catppuccin_frappe";
editor = { auto-completion = true; auto-format = true; };
};
}