From 687d5b52ccfea9d77449cc6040e6c73129934564 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Tue, 29 Jul 2025 20:48:22 +0200 Subject: [PATCH] Simplify papis aliases --- modules/papis.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/papis.nix b/modules/papis.nix index 2096e1f..7da4888 100644 --- a/modules/papis.nix +++ b/modules/papis.nix @@ -49,13 +49,13 @@ # Shell aliases for papis workflow programs.zsh.shellAliases = { # Bibliography formatting - papis-info = "papis list --template \"$HOME/Library/Application Support/papis/templates/bibitem.template\""; + pals = "papis list --template \"$HOME/Library/Application Support/papis/templates/bibitem.template\""; # File operations - papis-add-file = "papis addto -f ~/Downloads/"; - papis-add-url = "papis addto -u"; + pafile = "papis addto -f ~/Downloads/"; + paurl = "papis addto -u"; # Finder integration - papis-finder = "open -R $(papis list)"; + pafinder = "open -R $(papis list)"; }; }