This commit is contained in:
krolyxon 2022-08-20 00:20:46 +05:30
parent 20491f2f6a
commit c2cccb65cc
2 changed files with 8 additions and 0 deletions

View File

@ -4,6 +4,7 @@ https://ihatereality.space/rss.xml "programming"
https://fasterthanli.me/index.xml "programming"
https://digdeeper.club/atom.xml
https://gnulinuxindia.org/index.xml
https://cedaei.com/index.xml
https://krolyxon.vern.cc/atom.xml
https://lukesmith.xyz/rss.xml
https://landchad.net/rss

View File

@ -25,6 +25,13 @@ alias \
diff="diff --color=auto" \
ip="ip -color=auto"
# git aliases
alias \
ga='git add'
gc='git commit -sS'
gp='git push'
ec() {find ~/.config -type f | fzf | xargs -r $EDITOR ;}
se() { cd ~/.local/bin; $EDITOR $(fzf) ;}
ef() {fzf | xargs -r -I % $EDITOR % ;}