From a897caee9fe7842a7c964a533fbe8e3e64ae4402 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 29 Aug 2023 13:26:28 -0500 Subject: [PATCH] Add extra home config for cx --- home/git.nix | 2 ++ home/xonsh.nix | 1 + 2 files changed, 3 insertions(+) diff --git a/home/git.nix b/home/git.nix index 313d795..bf22cc5 100644 --- a/home/git.nix +++ b/home/git.nix @@ -17,6 +17,8 @@ ".DS_Store" # Macs "Thumbs.db" # Windows ".tox" # Tox temp directory + ".eclipse" # These next two are created by VSCodium plugins + ".bazelproject" ]; extraConfig = { init.defaultBranch = "main"; diff --git a/home/xonsh.nix b/home/xonsh.nix index 2281b50..8bcd39c 100644 --- a/home/xonsh.nix +++ b/home/xonsh.nix @@ -38,6 +38,7 @@ cgh = "$GH_CONFIG_DIR=\"${config.home.homeDirectory}/.config/gh/compass\" gh"; crun = "compass workspace run"; ctest = "compass workspace test --extra-cmd-args=\"--test_output=errors\""; + ccover = "compass workspace cover --extra-cmd-args=\"--test_output=errors\""; cylint = "./scripts/run_yaml_lint.py"; cpip = "compass workspace run src/python3/uc/tools:run_pip_compile";