From 094a77c22e103e290fbb5171a03e7991fab60e69 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Fri, 5 Apr 2024 09:47:20 -0400 Subject: [PATCH] Adds pass word store aliases to zshrc --- zsh/config/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/config/.zshrc b/zsh/config/.zshrc index 8561960..5b03286 100755 --- a/zsh/config/.zshrc +++ b/zsh/config/.zshrc @@ -163,6 +163,9 @@ alias hnc='hugo new content' # generate new hugo site content quickly alias j='just' # run justfile's quickly. alias l='ls -lahH --color=auto' # better ls command. alias lfs='ls -lahH --color=auto "$ZDOTDIR/functions"' # List functions. +alias p='pass' # run the pass command quickly. +alias pf='pass fzf' # fuzzy find a password quickly and copy selection to clipboard. +alias pg='pass get' # get an attribute of a password file quickly. alias reload='exec zsh -l' # reload the shell, useful when making changes. alias t='tmux' # access tmux quickly alias tka='tmux kill-server' # kill tmux server and all sessions.