Parcourir la Source

~/.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 ans auparavant
Parent
commit
e204d53171
2 fichiers modifiés avec 10 ajouts et 3 suppressions
  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