Skip to content

Instantly share code, notes, and snippets.

View LeeFlannery's full-sized avatar
🥸

Lee Flannery LeeFlannery

🥸
View GitHub Profile
@LeeFlannery
LeeFlannery / .gitignore
Created December 17, 2010 20:51
.gitignore file for C# .NET development - plus Vim and Mac considerations
# Personal files
*.user
dev.config
connections.config
# Build results
[Dd]ebug/
[Rr]elease/
[Bb]in/
[Oo]bj/
@LeeFlannery
LeeFlannery / autohotkey.ahk
Created May 22, 2012 21:47
My key mappings for AutoHotKey. Media controls and text editor launches.
; http://www.autohotkey.com/
;
; My key mappings for autohotkey
; Lee Flannery
;
; Three text editors mapped to ctrl+1, 2, and 3.
;
; Media controls mapped to ctrl+alt+cursor keys
;
; up : volume up
@LeeFlannery
LeeFlannery / Preferences.sublime-settings
Last active October 13, 2015 05:58
My user config settings for Sublime Text 3
{
"auto_complete_commit_on_tab": true,
"color_scheme": "Packages/Monokai Extended/Monokai Extended.tmTheme",
"draw_white_space": "all",
"font_face": "Source Code Pro",
"font_size": 11,
"ignored_packages":
[
"Vintage",
"Markdown"
@LeeFlannery
LeeFlannery / .gitconfig
Last active December 12, 2015 03:29
My .gitconfig with kdiff for difftool & gvim for editor
[gui]
fontdiff = -family Consolas -size 11 -weight normal -slant roman -underline 0 -overstrike 0
recentrepo = D:/projects/Redacted
[user]
name = Lee Flannery
email = lee.flannery@example.com
[core]
# editor = 'D:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -nosession -noPlugin #
editor = 'D:/Program Files (x86)/Vim/vim73/gvim.exe'
autocrlf = false
@LeeFlannery
LeeFlannery / subl.bat
Created January 31, 2014 15:57
batch file to run Sublime Text from Windows command line (put in path)
@start "sublime" "%ProgramW6432%\Sublime Text 3\sublime_text.exe" %*
@LeeFlannery
LeeFlannery / subl.sh
Last active August 29, 2015 13:56
symlink to put "subl" in the path to run Sublime Text from terminal command line
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl
# optionally set as EDITOR
export EDITOR='subl -w'
@LeeFlannery
LeeFlannery / Package Control.sublime-settings
Last active August 29, 2015 13:56
Packages I'm using in Sublime Text 3 ATM.
{
"in_process_packages":
[
],
"installed_dependencies":
[
"0_package_control_loader",
"bz2"
],
"installed_packages":
@LeeFlannery
LeeFlannery / .gitconfig
Last active August 29, 2015 14:06
My Mac .gitconfig.
[user]
name = Lee Flannery
email = lee.flannery@example.com
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
@LeeFlannery
LeeFlannery / .gitconfig
Last active May 24, 2016 14:49
.gitconfig Windows, revised 5-2016
[alias]
unstage = reset HEAD
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
[core]
autocrlf = true
excludesfile = /c/users/guy/.gitignore_global
editor = atom --wait
[push]
default = simple
[user]
@LeeFlannery
LeeFlannery / .gitignore_global
Created January 15, 2015 18:08
core.excludes gitignore - stuff you never want.
# OSX
.DS_Store
.AppleDouble
.LSOverride
._*
# Windows
Thumbs.db