Last active
August 29, 2015 14:18
-
-
Save darlanmendonca/c1abebc248d8394858c0 to your computer and use it in GitHub Desktop.
my list of alias
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # para editar o arquivo de configuração do zsh | |
| # rode o comando abaixo | |
| nano ~/.zshrc | |
| # depois cole os alias abaixo | |
| alias zshconfig="subl ~/.zshrc" | |
| alias subl="'/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl'" | |
| alias susubl="sudo '/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl'" | |
| alias npmlistglobal="npm ls -g --depth=0 "$@" 2>/dev/null" # https://gist.github.com/nicholascloud/5372443 | |
| alias npmlist="npm ls --depth=0 "$@" 2>/dev/null" | |
| alias init-browser-sync="browser-sync start --server --files '*.css, *.html, js/*.js'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment