From c2cccb65ccd2d3eaee503ba7231ef3d52f3b5268 Mon Sep 17 00:00:00 2001 From: krolyxon Date: Sat, 20 Aug 2022 00:20:46 +0530 Subject: [PATCH] aliasrc --- .config/newsboat/urls | 1 + .config/shell/aliasrc | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/.config/newsboat/urls b/.config/newsboat/urls index 0806aa9..f45dca6 100644 --- a/.config/newsboat/urls +++ b/.config/newsboat/urls @@ -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 diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index aee8c6f..066286a 100644 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -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 % ;}