Skip to content

Instantly share code, notes, and snippets.

@jhkrischel
Last active December 19, 2015 05:19
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 jhkrischel/5903176 to your computer and use it in GitHub Desktop.
Save jhkrischel/5903176 to your computer and use it in GitHub Desktop.
My start on sublime text 2

Sublime Text 2 Kickstart

Install package management

http://wbond.net/sublime_packages/package_control/installation

Ctrl-~

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')

Install Markdown syntax highlighting

Command-Shift-P

Type "install" to get "Package Control: Install Package"

Type "MarkdownEditing" and install package.

Restart Sublime Text

Customize Markdown syntax highlighting

Command-, (open preferences file)

Command-O (open new file...will default to ~/Library/Application Support/Sublime Text 2/Packages/User)

Navigate to ~/Library/Application Support/Sublime Text 2/Packages/MarkdownEditing

Edit both Markdown.sublime-settings and MultiMarkdown.sublime-settings

"font_size": 12,
"translate_tabs_to_spaces": false,
"wrap_width": 120,

Add "close project" shortcut key

Sublime Text 2...Preferences...Key Bindings (Default)...

Add the following line:

{ "keys": ["super+ctrl+c"], "command": "close_project" },

This lets you open projects with "Ctrl-Cmd-P", and close the project (to get back to "neutral" as it were) with "Ctrl-Cmd-C"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment