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
export CLICOLOR=1 | |
export LSCOLORS=ExFxBxDxCxegedabagacad | |
alias ls='ls -GFh' | |
alias git=hub | |
alias gis="git status" | |
alias gits="git status" | |
alias gitp="git pull" | |
alias safepull="git stash && git pull && git stash apply" |
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
#!/usr/bin/env node | |
/** This hook updates platform configuration files based on preferences and config-file data defined in config.xml. | |
Currently only the AndroidManifest.xml and IOS *-Info.plist file are supported. | |
Prerequistes: | |
npm install -D lodash elementtree plist | |
See http://stackoverflow.com/questions/28198983/ionic-cordova-add-intent-filter-using-config-xml |