aboutsummaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
Diffstat (limited to 'zsh')
-rw-r--r--zsh/modules/aliases.zsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/zsh/modules/aliases.zsh b/zsh/modules/aliases.zsh
index 0f69a9e..ad39122 100644
--- a/zsh/modules/aliases.zsh
+++ b/zsh/modules/aliases.zsh
@@ -14,7 +14,7 @@ alias ta="tmux attach -t"
alias tn="tmux new -s"
# Simple python server
-alias spawn-server="python -m SimpleHTTPServer"
+alias spawn-server="python -m http.server 9000"
# Git aliases
alias g='git'
@@ -28,7 +28,7 @@ alias gm='git merge'
alias gp='git push'
# Graphicsmagick override
-alias grm="/usr/local/bin/gm"
+alias grm="$(brew --prefix)/bin/gm"
# JS friendly tree
alias arbol="tree -I 'node_modules|bower_components|doc|__pycache__|\.pyc'"