My zsh configuration
git clone https://github.com/m-col/zshrc
Files | Refs | Readme

Commit 212011d950b57d69483a84e9c21b4409cfbe4abb
Parent: 10ae12f73425cb01c2529e3a3fe55349d858b4c2
Author: mcol <mcol@posteo.net>
Date: 2020-01-01 19:57:39 +0000
Committer: mcol <mcol@posteo.net>
Committed: 2020-01-01 19:57:39 +0000

add AUR_PAGER; chp cherry-pick alias

zshrc Modified

@@ -54,6 +54,7 @@
 
 export SUDO_EDITOR=vim
 export EDITOR=vim
+export AUR_PAGER=ranger
 
 # ensure that the prompt is redrawn when the terminal size changes.
 TRAPWINCH () { zle &&  zle -R }

rc.conf Modified

@@ -614,7 +614,7 @@
 map r3 shell mogrify -rotate 270 %s
 
 # drag files
-map <C-d> shell dragon-drag-and-drop -a -x %p
+map <C-d> shell dragon-drag-and-drop -a -x %p &> /dev/null &
 
 # filter while finding
 map f console scout -ftsea%space
@@ -635,8 +635,7 @@
 
 map gg cd ~/git
 map gC cd ~/git/custom-packages
-map gA cd ~/.cache/aur
-map gU cd ~/.cache/aurutils/sync
+map gu cd ~/.cache/aurutils/sync
 
 map gc cd ~/.config
 map gx cd ~/.config/Xresources.d

aliases Modified

@@ -57,6 +57,7 @@
 alias ch='git checkout'
 alias dif='git diff'
 alias cl='git clone'
+alias chp='git cherry-pick'
 
 # tools
 alias usync='rsync -avPzh --delete'