feat: automatically clear between nodemon commands

This commit is contained in:
Oliver Davies 2023-04-27 19:01:36 +01:00
parent b729416e82
commit 6c0691800e

View file

@ -8,6 +8,18 @@ in {
home.packages = (import ./packages.nix) { inherit pkgs; };
home.file."nodemon.json".text = ''
{
"ignore": [
".git"
],
"verbose": true,
"events": {
"start": "clear"
}
}
'';
programs.bat.enable = true;
programs.neovim = {