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
using UnityEngine; | |
using UnityEditor; | |
public class InspectorReadOnlyAttribute : PropertyAttribute { | |
} | |
[CustomPropertyDrawer( typeof( InspectorReadOnlyAttribute ) )] | |
public class InspectorReadOnlyDrawer : PropertyDrawer { | |
public override void OnGUI(Rect position, SerializedProperty prop, GUIContent label) |
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
alias gitk='gitk &' | |
alias pwc='pwd | pbcopy' | |
alias pyton='python -B' |
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
plugins=(ruby macos git sublime sudo brew git-extras github ssh-agent z) |
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
.DS_Store | |
*.DS_Store | |
DerivedData | |
xcuserdata | |
*.xcuserstate | |
*.pbxuser | |
*.xcscmblueprint | |
*.swp |
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
[alias] | |
st = status | |
ci = commit | |
co = checkout | |
br = branch | |
pr = pull --rebase | |
pom = push origin master | |
com = checkout master | |
sh = stash show -v stash@{0} | |
shubl = !git stash show -v stash@{0} | subl & |
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
set expandtab | |
set shiftwidth=4 | |
set tabstop=4 | |
if &t_Co > 2 || has("gui_running") | |
set hlsearch | |
syntax on | |
endif | |
set ic | |
set nu | |
set is |