Skip to content

Instantly share code, notes, and snippets.

@epicserve
Created July 27, 2011 15:40
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save epicserve/1109642 to your computer and use it in GitHub Desktop.
Save epicserve/1109642 to your computer and use it in GitHub Desktop.
Notes on My Sublime Text 2 Setup

User File Settings

{
    "draw_indent_guides": false,
    "fold_buttons": true,
    "font_face": "Meslo LG S",
    "font_size": 13,
    "highlight_line": true,
    "ignored_packages": [],
    "open_files_in_new_window": false,
    "pep8_ignore":
    [
        "E501"
    ],
    "phoenix_color_orange": true,
    "pyflakes_ignore":
    [
        "import *"
    ],
    "rulers":
    [
        120
    ],
    "scroll_past_end": true,
    "sublimelinter": true,
    "tab_size": 4,
    "theme": "Phoenix Dark.sublime-theme",
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true,
    "use_tab_stops": true,
    "word_wrap": false,
    "wrap_width": 120
}

Setup Sublime Command Line Helper

ln -s "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" ~/usr/local/bin/subl

I also added the following to my bash profile (.bash_profile):

alias e=subl

Now you can load a folder into Sublime from the command line.

cd ~/Sites/mysite
subl .

Packages I've Added

@epicserve
Copy link
Author

Added the Soda Theme to make things look a little nicer.

@idan
Copy link

idan commented Aug 1, 2011

Nice list!

@epicserve
Copy link
Author

Edited the wish list and added the item, "a shortcut to preview reStructuredText and Markdown documents"

@adamfast
Copy link

Django4ST2 seems to have disappeared from GitHub

@epicserve
Copy link
Author

@adamfast, It looks like it got renamed to Djaneiro. When I found this forked version https://github.com/notanumber/Django4ST2, it's upstream was https://github.com/squ1b3r/Djaneiro.

Copy link

ghost commented Feb 1, 2012

If you want to open a terminal from a Finder window in the current directory, have a look at cdto - http://code.google.com/p/cdto/
Only works from a Finder window though - can't do it from the Desktop.

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