diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-07-25 15:40:18 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-07-25 15:44:48 +0100 |
commit | 67a4addcd06df2cb33e38d99552f658504822553 (patch) | |
tree | 9db9f5b57cb84e760ca0d2186c9c9666240eb55c /Shell | |
parent | 1c82737b1e4c58931a881faa4c9d99524c93bb48 (diff) | |
download | dotfiles-67a4addcd06df2cb33e38d99552f658504822553.tar.gz dotfiles-67a4addcd06df2cb33e38d99552f658504822553.tar.bz2 dotfiles-67a4addcd06df2cb33e38d99552f658504822553.zip |
(Shell|Scripts|Emacs)~minor edits
+psearch function to search pacman with less (I use this all the time,
just makes it easier to do in one go)
~speed script to use a slightly larger file so user can get a better
estimate of dl speed
~ada-mode slightly better comments
Diffstat (limited to 'Shell')
-rw-r--r-- | Shell/.zshrc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Shell/.zshrc b/Shell/.zshrc index 8d17113..117af9a 100644 --- a/Shell/.zshrc +++ b/Shell/.zshrc @@ -27,6 +27,10 @@ ef () { sedit $(fzf) } +psearch () { + pacman -Ss $1 | less +} + ### Git aliases alias gs="git status" alias gd="git diff" |