aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2021-07-25 15:40:18 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2021-07-25 15:44:48 +0100
commit67a4addcd06df2cb33e38d99552f658504822553 (patch)
tree9db9f5b57cb84e760ca0d2186c9c9666240eb55c
parent1c82737b1e4c58931a881faa4c9d99524c93bb48 (diff)
downloaddotfiles-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
-rw-r--r--Emacs/.config/emacs/ada-mode.el2
-rwxr-xr-xScripts/.local/scripts/speed2
-rw-r--r--Shell/.zshrc4
3 files changed, 6 insertions, 2 deletions
diff --git a/Emacs/.config/emacs/ada-mode.el b/Emacs/.config/emacs/ada-mode.el
index 764a121..2dc40d7 100644
--- a/Emacs/.config/emacs/ada-mode.el
+++ b/Emacs/.config/emacs/ada-mode.el
@@ -27,7 +27,7 @@
;; I feel ada-modeā„¢ (the official one) tries to do too many things at
;; once, so I want something that does the basics. Also want to take
-;; this opportunity to make a new mode and what facilities Emacs
+;; this opportunity to make a new mode and see what facilities Emacs
;; provides for it.
;;; Code:
diff --git a/Scripts/.local/scripts/speed b/Scripts/.local/scripts/speed
index bfd07fe..21029a1 100755
--- a/Scripts/.local/scripts/speed
+++ b/Scripts/.local/scripts/speed
@@ -1,2 +1,2 @@
#!/bin/bash
-wget -nv --show-progress -O /dev/null "https://git.aryadevchavali.com/?p=Text.git;a=blob_plain;f=PDFs/Racket.pdf;hb=HEAD"
+wget -nv --show-progress -O /dev/null "https://git.aryadevchavali.com/?p=Text.git;a=blob_plain;f=PDFs/Algorithms+2011.pdf;hb=HEAD"
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"