瀏覽代碼

~/.aliases: some helpful aliases.

i like the ones for projects, but i'd like to go further because
sometimes starting them up is a pain. maybe expand the `make run`
concept? or possibly even write a LT plugin?
Lucas Stadler 12 年之前
父節點
當前提交
e204d53171
共有 2 個文件被更改,包括 10 次插入3 次删除
  1. 9 0
      .aliases
  2. 1 3
      .zshrc

+ 9 - 0
.aliases

@ -0,0 +1,9 @@
1
alias ls='ls --group-directories-first --color=auto'
2
3
# shortcuts
4
alias tomorrow="vim ~/d/tomorrow -c ':Goyo'"
5
alias v="vim -c ':Goyo'"
6
7
# projects
8
alias clarity="cd ~/k/lp/clj/clarity"
9
alias pixl="cd ~/k/lp/js/pixl"

+ 1 - 3
.zshrc

@ -47,7 +47,5 @@ bindkey $terminfo[khome] beginning-of-line
47 47
bindkey $terminfo[kdch1] delete-char
48 48
bindkey  history-incremental-search-backward
49 49
50
alias ls='ls --group-directories-first --color=auto'
51
alias tomorrow='vim ~/d/tomorrow -c ":Goyo"'
52
53 50
source ~/.env
51
source ~/.aliases