feat: add qml-ts-mode

This commit is contained in:
Artur Manuel 2024-10-21 14:58:11 +01:00
commit ba6a74607f
3 changed files with 31 additions and 12 deletions

View file

@ -38,12 +38,16 @@
};
packages = {
pankomacs = mkEmacs (pkgs.emacs29-pgtk.override {
withSystemd = false;
});
pankomacs-x11 = mkEmacs (pkgs.emacs-gtk.overide {
withSystemd = false;
});
pankomacs = mkEmacs (
pkgs.emacs29-pgtk.override {
withSystemd = false;
}
);
pankomacs-x11 = mkEmacs (
pkgs.emacs-gtk.overide {
withSystemd = false;
}
);
};
formatter = pkgs.nixfmt-rfc-style;