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
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
"draw_white_space": "selection", | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS" |
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
Add-SshKey ~/.ssh/git_diamond | |
net start "Wacom Professional Service" | |
& "C:\Program Files\AutoHotkey\AutoHotkey.exe" | |
# stop beeping | |
net stop beep |
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
echo 'events { | |
worker_connections 1024; | |
} | |
error_log /usr/local/Cellar/nginx/1.5.8/error.log; | |
http { | |
include mime.types; | |
default_type application/octet-stream; | |
sendfile on; |
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
Show hidden characters
[ | |
{ | |
"class": "sidebar_label", | |
"color": [0, 0, 0], | |
"font.bold": false, | |
"font.size": 13 | |
}, | |
{ | |
"class": "tab_label", | |
"font.size": 12, |
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
syntax on | |
colorscheme distinguished | |
set cm=blowfish |
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
{ | |
"non_blocking": true, | |
} |
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
[flake8] | |
max-line-length = 160 | |
ignore = E202 |
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
{ | |
"auto_upgrade_last_run": null, | |
"installed_packages": | |
[ | |
"AdvancedNewFile", | |
"Emmet", | |
"Indent XML", | |
"jQuery Snippets pack", | |
"LESS", | |
"Package Control", |
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 ll="ls -lah"; | |
alias chrome="open /Applications/Google\ Chrome.app"; | |
alias firefox="open -a Firefox.app"; | |
alias ssh_box="source ~/useful_shell_scripts/ssh_box.sh" | |
alias kcachegrind="open /Applications/qcachegrind.app"; | |
alias fix_office_borders="~/useful_shell_scripts/fix_office_borders.py"; | |
alias tree="find . -not -name '*.pyc' -not -name '*.pyo' -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'"; | |
alias dsize="du -ch -d 1 2>/dev/null"; | |
alias dsize2="du -ch | tail -n 10"; |
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
[ | |
{ "keys": ["alt+p"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
{ "keys": ["alt+shift+p"], "command": "show_overlay", "args": {"overlay": "command_palette"} }, | |
{ "keys": ["alt+f"], "command": "show_panel", "args": {"panel": "find"} }, | |
{ "keys": ["alt+shift+f"], "command": "show_panel", "args": {"panel": "replace"} }, | |
{ "keys": ["alt+l"], "command": "expand_selection", "args": {"to": "line"} }, | |
{ "keys": ["super+d"], "command": "find_under_expand" }, | |
{ "keys": ["alt+k", "alt+d"], "command": "find_under_expand_skip" }, | |
{ "keys": ["alt+m"], "command": "move_to", "args": {"to": "brackets"} }, | |
{ "keys": ["alt+/"], "command": "toggle_comment", "args": { "block": false } }, |