From 32f76dab4e64335f35404cec4efdb385d5664ef4 Mon Sep 17 00:00:00 2001 From: Adam Jeniski Date: Tue, 8 Nov 2022 13:49:57 -0500 Subject: [PATCH] add ranger and cfg aliases --- .gitignore | 2 +- .zshrc | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4b691ca..3236e04 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ .cfg -*/plugged/ +* diff --git a/.zshrc b/.zshrc index 32c90b0..788755b 100644 --- a/.zshrc +++ b/.zshrc @@ -111,10 +111,12 @@ TMUX_CONFIG="~/.config/tmux/.tmux.conf" #development shortcuts alias lg="lazygit" +alias cfg="lazygit --git-dir=$HOME/.cfg --work-tree=$HOME" alias tn="tmux -u -f $TMUX_CONFIG new" alias ta="tmux -u -f $TMUX_CONFIG attach" alias tl="tmux list-sessions" alias o="rg --files . | fzf | xargs nvim" +alias r="ranger" # some more ls aliases alias ll='ls -alF'