summary refs log tree commit diff stats
path: root/user
diff options
context:
space:
mode:
Diffstat (limited to 'user')
-rw-r--r--user/settings/development/base.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/user/settings/development/base.nix b/user/settings/development/base.nix
index 585113a7..51cf0ffd 100644
--- a/user/settings/development/base.nix
+++ b/user/settings/development/base.nix
@@ -27,6 +27,7 @@
       miller
       watchexec
       entr
+      personal.projectdo
 
       litecli
 
@@ -74,6 +75,12 @@
     };
   };
 
+  programs.fish.shellAbbrs = {
+    b = { function = "projectdo_build"; };
+    r = { function = "projectdo_run"; };
+    t = { function = "projectdo_test"; };
+    p = { function = "projectdo_tool"; };
+  };
   home.shellAliases = {
     j = "just";
     er = "direnv reload";