Skip to content

Instantly share code, notes, and snippets.

View svnblame's full-sized avatar
🏠
Working from home

Gene Kelley svnblame

🏠
Working from home
View GitHub Profile
@svnblame
svnblame / .gitconfig
Last active May 18, 2018 20:14
Gene Kelley's Git Config
# Gene Kelley's Git configuration file.
[core]
editor = vi
autocrlf = input
[user]
name = Gene Kelley
email = eugenek@guildmortgage.net
[push]
default = matching
[alias]
@svnblame
svnblame / Material-Theme.sublime-theme
Last active February 10, 2017 00:05
Sublime Text Material Theme
[
{
"class": "sheet_container_control",
"layer0.tint": [37, 43, 57],
"layer0.opacity": 1.0
},
{
"class": "grid_layout_control",
"border_size": 1,
"border_color": [34, 45, 51]
@svnblame
svnblame / PHP-Companion.sublime-settings
Last active December 29, 2016 17:01
Sublime Text PHP Companion Key Bindings
[
{ "keys": ["f6"], "command": "expand_fqcn" },
{ "keys": ["shift+f6"], "command": "expand_fqcn", "args": {"leading_separator": true} },
{ "keys": ["f5"], "command": "find_use" },
{ "keys": ["f4"], "command": "import_namespace" },
{ "keys": ["f3"], "command": "implement" },
{ "keys": ["shift+f12"], "command": "goto_definition_scope" },
{ "keys": ["f7"], "command": "insert_php_constructor_property" },
{ "use_sort_length": true },
{ "visibility": "protected" }
@svnblame
svnblame / .gitconfig
Last active February 10, 2017 16:59
Gene Kelley's Git Aliases
[alias]
st= status -sbv
ci = commit
cm = commit -am
br = branch
brv = branch -avv
co = checkout
df = diff
lp = log -p
who = shortlog -n -s --no-merges