-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.functions
executable file
·53 lines (46 loc) · 1.28 KB
/
.functions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env zsh
function delete_local_tm_snapshots() {
for snapshot in $(tmutil listlocalsnapshots / | cut -d '.' -f 4 | grep -v Snapshots)
do
sudo tmutil deletelocalsnapshots $snapshot
done
}
function gi() {
curl -sLw n "https://www.toptal.com/developers/gitignore/api/$@"
}
function encrypt() {
local FILE=$1
tar cz "$FILE" | openssl enc -aes-256-cbc -e -v > "$FILE.tar.gz.enc"
}
function synhilight(){
FILENAME=$1
if [[ -z "$FILENAME" ]]
then
printf "%s" "filename?: "
read -r FILENAME
fi
pygmentize -f rtf -l r "$FILENAME" | pbcopy
}
if type emacs &>/dev/null
then
function magit(){
if [ -d "$1" ]; then
cd "$1" || exit
fi
emacsclient -nw -c -s ~/.emacs.d/server/server --eval "(magit)" --no-wait
}
function htmlorg() {
ORGFILE=$1
if [[ -z "$ORGFILE" ]]
then
echo -e "Usage: $funcstack[1] <file.org> "
return
fi
emacs $ORGFILE --batch -q \
--eval '(setq user-full-name nil)' \
--eval '(setq org-html-validation-link nil)' \
--eval '(setq org-export-html-postamble nil)' \
--eval "(setq org-export-htmlize-output-type \'css)" \
-f org-html-export-to-html --kill
}
fi