tenseleyflow/ndotfiles / 73f8df6

Browse files

deprecate alias.zsh

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
73f8df679bd129d3736d8bca8853df33719f699b
Parents
74f351f
Tree
4fea01b

1 changed file

StatusFile+-
M zsh/alias.zsh 74 71
zsh/alias.zshmodified
@@ -1,83 +1,86 @@
1
+#
2
+# NOTE: aliases now managed by my CLI tool, shtick. 
3
+#       see shtick folder
14
 
5
+# alias pls="sudo !!"
26
 
3
-alias pls="sudo !!"
4
-
5
-# :::
6
-# :::: shelly ::::
7
-# ::::: :::::: :::::
8
-# 
9
-alias refresh="source ${HOME}/.zshrc"
10
-alias zconfig="micro ${HOME}/.zshrc || ${EDITOR} ${HOME}/.zshrc"
7
+# # :::
8
+# # :::: shelly ::::
9
+# # ::::: :::::: :::::
10
+# # 
11
+# alias refresh="source ${HOME}/.zshrc"
12
+# alias zconfig="micro ${HOME}/.zshrc || ${EDITOR} ${HOME}/.zshrc"
1113
 
1214
 
13
-# :::
14
-# :::: navigation ::::
15
-# ::::: :::::::::: :::::
16
-# 
17
-# NOTE: this actually only worked in fish
18
-#       but I've rewritten `up` as a shell function
19
-#       found in $ZSH_CUSTOM/function.zsh
20
-# NOTE: the short circuit wont work in bash
21
-#       and (may??) not ALWAYS work in zsh (or fish)
22
-#
23
-#       so what's the point?
24
-#       well with the short circuit you can do:
25
-#
26
-#            >>> up up up
27
-#
28
-# which will correctly change dirs to ../../../
29
-#
30
-alias bk="- || cd -"
31
-# alias up="../ || cd ../"
32
-alias goclass="cd ${HOME}/Documents/Class/"
33
-alias goproj="cd ${HOME}/Documents/Project/"
34
-alias goorg="cd ${HOME}/Documents/GithubOrgs/"
35
-alias goterse="cd ${HOME}/Documents/GithubOrgs/tenselyflow"
36
-alias godot="cd ${HOME}/Documents/GithubOrgs/tenselyflow/ndotfiles"
15
+# # :::
16
+# # :::: navigation ::::
17
+# # ::::: :::::::::: :::::
18
+# # 
19
+# # NOTE: this actually only worked in fish
20
+# #       but I've rewritten `up` as a shell function
21
+# #       found in $ZSH_CUSTOM/function.zsh
22
+# # NOTE: the short circuit wont work in bash
23
+# #       and (may??) not ALWAYS work in zsh (or fish)
24
+# #
25
+# #       so what's the point?
26
+# #       well with the short circuit you can do:
27
+# #
28
+# #            >>> up up up
29
+# #
30
+# # which will correctly change dirs to ../../../
31
+# #
32
+# alias bk="- || cd -"
33
+# # alias up="../ || cd ../"
34
+# alias goclass="cd ${HOME}/Documents/Class/"
35
+# alias goproj="cd ${HOME}/Documents/Project/"
36
+# alias goorg="cd ${HOME}/Documents/GithubOrgs/"
37
+# alias goterse="cd ${HOME}/Documents/GithubOrgs/tenselyflow"
38
+# alias godot="cd ${HOME}/Documents/GithubOrgs/tenselyflow/ndotfiles"
3739
 
38
-# :::
39
-# :::: python things ::::
40
-# ::::: ::::::::::::: :::::
41
-# 
42
-alias setpy="asdf set python"
43
-alias mange="python manage.py"
40
+# # :::
41
+# # :::: python things ::::
42
+# # ::::: ::::::::::::: :::::
43
+# # 
44
+# alias setpy="asdf set python"
45
+# alias mange="python manage.py"
4446
 
45
-# :::
46
-# :::: nodey things ::::
47
-# ::::: nodey things :::::
48
-# 
49
-alias ni="npm --install"
50
-alias setnode="asdf set nodejs"
47
+# # :::
48
+# # :::: nodey things ::::
49
+# # ::::: nodey things :::::
50
+# # 
51
+# alias ni="npm --install"
52
+# alias setnode="asdf set nodejs"
5153
 
52
-# :::
53
-# :::: gitty ::::
54
-# ::::: ::::: :::::
55
-# 
56
-alias gad="git add"
57
-alias gas="git status"
58
-alias gall="git add --all"
59
-alias gcomm="git commit --message"
60
-alias gpull="git pull origin trunk"
61
-alias gputt="git push origin trunk"
62
-alias gcamm="git commit --all --message"
63
-alias glogg="git log --online --graph --decorate --all"
54
+# # :::
55
+# # :::: gitty ::::
56
+# # ::::: ::::: :::::
57
+# # 
58
+# alias gad="git add"
59
+# alias gas="git status"
60
+# alias gall="git add --all"
61
+# alias gcomm="git commit --message"
62
+# alias gpull="git pull origin trunk"
63
+# alias gputt="git push origin trunk"
64
+# alias gcamm="git commit --all --message"
65
+# alias glogg="git log --online --graph --decorate --all"
6466
 
65
-# :::
66
-# :::: make ::::
67
-# ::::: :::: :::::
68
-# 
69
-alias mk="make"
70
-alias mka="make all"
71
-alias mkr="make run"
72
-alias mkt="make test"
73
-alias mkc="make clean"
67
+# # :::
68
+# # :::: make ::::
69
+# # ::::: :::: :::::
70
+# # 
71
+# alias mk="make"
72
+# alias mka="make all"
73
+# alias mkr="make run"
74
+# alias mkt="make test"
75
+# alias mkc="make clean"
76
+# alias mki="make install"
7477
 
75
-# :::
76
-# :::: other ::::
77
-# ::::: ::::: :::::
78
-# 
79
-alias gfort="gfortran"
80
-alias brewup="brew update && brew upgrade && brew cleanup"
78
+# # :::
79
+# # :::: other ::::
80
+# # ::::: ::::: :::::
81
+# # 
82
+# alias gfort="gfortran"
83
+# alias brewup="brew update && brew upgrade && brew cleanup"
8184
 
8285
 
8386