This file contains 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
Shader "Sprites/Diffuse Flash" | |
{ | |
Properties | |
{ | |
[PerRendererData] _MainTex("Sprite Texture", 2D) = "white" {} | |
_SelfIllum("Self Illumination",Range(0.0,1.0)) = 0.0 | |
_FlashAmount("Flash Amount",Range(0.0,1.0)) = 0.0 | |
[MaterialToggle] PixelSnap("Pixel snap", Float) = 0 | |
} |
This file contains 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 NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion | |
# git-prompt.sh copied from https://github.com/lyze/posh-git-sh | |
source ~/git-prompt.sh | |
PROMPT_COMMAND='__posh_git_ps1 "\u@\h:\w" "\\\$ ";'$PROMPT_COMMAND | |
export VAGRANT_USE_VAGRANT_TRIGGERS=1 |
This file contains 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
# Set CLICOLOR if you want Ansi Colors in iTerm2 | |
export CLICOLOR=1 | |
# Set colors to match iTerm2 Terminal Colors | |
export TERM=xterm-256color | |
export NVM_DIR="/Users/rbailey/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm | |
source ~/git-prompt.sh |
This file contains 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
[Profile] | |
Device = XInput/0/Gamepad | |
Buttons/A = Button A | |
Buttons/B = Button B | |
Buttons/X = Button X | |
Buttons/Y = Button Y | |
Buttons/Z = Shoulder R | |
Buttons/Start = Start | |
Main Stick/Up = Left Y+ | |
Main Stick/Down = Left Y- |
This file contains 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
Show hidden characters
[ | |
{ "keys": ["ctrl+v"], "command": "paste_and_indent" }, | |
{ "keys": ["ctrl+shift+v"], "command": "paste" }, | |
] |
This file contains 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
# This file is for unifying the coding style for different editors and IDEs. | |
# More information at http://EditorConfig.org | |
# No .editorconfig files above the root directory | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 4 | |
charset = utf-8 |
This file contains 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
{ | |
"excludeFiles": ["node_modules/**", "api_docs/**"], | |
"disallowEmptyBlocks": true, | |
"disallowKeywordsOnNewLine": ["else"], | |
"disallowKeywords": ["with"], | |
"disallowMixedSpacesAndTabs": true, | |
"disallowNewlineBeforeBlockStatements": true, | |
"disallowSpaceAfterObjectKeys": true, | |
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"], | |
"disallowSpaceBeforeBinaryOperators": [","], |
This file contains 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
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"AngularJS", | |
"Babel", | |
"Case Conversion", |
This file contains 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
[user] | |
name = [Your Name] | |
email = [Your Email] | |
[alias] | |
co = checkout | |
rebase-this = "!git co master; git pull origin master; git co -; git rebase master" | |
assume = update-index --assume-unchanged | |
unassume = update-index --no-assume-unchanged | |
assumed = "!git ls-files -v | grep ^h | cut -c 3-" | |
unassume-all = "!git ls-files -v | grep ^h | cut -c 3-" | xargs -L1 git update-index --no-assume-unchanged |
This file contains 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
{ | |
"regexdash": true, | |
"browser": true, | |
"trailing": true, | |
"sub": true, | |
"curly": true, | |
"eqeqeq": true, | |
"indent": 4, | |
"latedef": "nofunc", | |
"newcap": true, |
NewerOlder