Sublime Text

Q&A's, tips, howto's
Locked
kanen
Posts: 145
Joined: Thu Mar 25, 2010 6:24 pm
Contact:

Sublime Text

Post by kanen »

Sublime newLisp
Sublime newLisp
sublime_newlisp.png (39.58 KiB) Viewed 2561 times
I'm in love with Sublime Text 2. It has replaced vim, TextMate and BBEdit completely.

With the newLisp bundle & a few tweaks, it's pretty much perfect. Thanks to @curmullion for the syntax file. https://github.com/cormullion/newlisp-s ... -2-package

http://www.nerdi.net/blog/2012/02/05/cu ... me-coding/

You also need this -- https://github.com/facelessuser/BracketHighlighter

And, you should learn a few shortcuts https://gist.github.com/1207002 (I'm in love with CMD+D when highlighting a word, for example -- or CMD+CTRL+G for the "whole scope").

See also: CMD+,

(updated)

Code: Select all

{
    "auto_complete": true,
    "close_windows_when_empty": false,
    "color_scheme": "Packages/Theme - Phoenix/Color Scheme/Tomorrow-Night.tmTheme",
    "draw_white_space": "selection",
    "find_selected_text": true,
    "fold_buttons": true,
    "font_face": "Inconsolata",
    "font_options": [ "subpixel_antialias" ],
    "font_size": 14.0,
    "highlight_line": true,
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true,
	"save_on_focus_lost":true,
	"tab_size": 2,
	"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", "_build", "dist", "build", "site"]
}
. Kanen Flowers http://kanen.me .

cormullion
Posts: 2038
Joined: Tue Nov 29, 2005 8:28 pm
Location: latiitude 50N longitude 3W
Contact:

Re: Sublime Text

Post by cormullion »

Cool - if you want to update the github repository, that would be great. (Pull request, is it?)

jopython
Posts: 123
Joined: Tue Sep 14, 2010 3:08 pm

Re: Sublime Text

Post by jopython »

What's wrong with emacs?

cormullion
Posts: 2038
Joined: Tue Nov 29, 2005 8:28 pm
Location: latiitude 50N longitude 3W
Contact:

Re: Sublime Text

Post by cormullion »


Locked