Skip to content

Instantly share code, notes, and snippets.

@inhji
Last active December 16, 2015 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inhji/5370717 to your computer and use it in GitHub Desktop.
Save inhji/5370717 to your computer and use it in GitHub Desktop.
Sublime Text 2 Config

Themes

Color Schemes

Extensions

  • Artisan
  • BracketHighlighter
  • cdnjs
  • ClickableURLs
  • ColorHighlighter
  • Emmet
  • SFTP
  • SideBarEnhancements
  • Dictionaries

View > Show Console

import urllib2,os; pf='Package Control.sublime-package'; ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not os.path.exists(ipp) else None; urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()); print('Please restart Sublime Text to finish installation')
{
"extensions":
[
"md",
"mdown",
"mmd",
"txt"
],
"trim_trailing_white_space_on_save": false,
"font_face": "Menlo",
"font_size": 15,
"font_options": [ "subpixel_antialias", "no_round", "directwrite"],
"color_scheme": "Packages/MarkdownEditing/MarkdownEditor.tmTheme",
// "color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Focus.tmTheme",
"translate_tabs_to_spaces": true,
"word_wrap": true,
"wrap_width": 70,
"draw_centered": false,
"auto_match_enabled": true,
"line_padding_top": 5,
"caret_style": "wide",
"highlight_line": true,
// add trailing #'s to headlines
"match_header_hashes": false,
"spell_check": false,
"dictionary": "Packages/Language - English/en_US.dic"
}
[
{ "keys": ["ctrl+v"], "command": "paste_and_indent" },
{ "keys": ["ctrl+shift+v"], "command": "paste" },
{ "keys": ["ctrl+f12"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["ctrl+f11"], "command": "toggle_side_bar" }
]
{
"color_scheme": "Packages/Dayle Rees Color Schemes/Darkside.tmTheme",
"fade_fold_buttons": false,
"font_size": 12,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"phoenix_color_blue": true,
"phoenix_color_expanded_folder": true,
"phoenix_dirty_bottom_bar": false,
"phoenix_eighties": true,
"phoenix_sidebar_tree_medium": true,
"phoenix_tabs_small": true,
"scroll_speed": 2.0,
"tab_size": 2,
"theme": "Phoenix Light.sublime-theme",
"translate_tabs_to_spaces": false,
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
".adobe",
".byobu",
".cache",
".compiz",
".config",
".dbus",
".gconf",
".icons",
".local",
".macromedia",
".mozilla",
".npm",
".pki",
"speech-dispatcher"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment