I'm Brett Slatkin and this is where I write about programming and related topics. You can contact me here or view my projects.

27 December 2012

Testing out Sublime Text 2 in earnest finally, after 7+ years of TextMate.

Update: Now have my settings checked into this repo.

Editor setup for future reference:

Theme (variation of All Hallow's Eve)
  • background: black
  • text: white
  • strings: green
  • comments: red
  • keywords: orange
  • constants: cyan
  • function calls: purple
  • escapes: grey
  • format strings: cyan
  • line highlight: navy

Config
{
  "color_scheme": "Packages/Color Scheme - Default/All Hallow's Eve.tmTheme",
  "font_face": "Monaco",
  "font_options":
  [
    "no_antialias"
  ],
  "font_size": 13,
  "highlight_line": true,
  "ignored_packages":
  [
    "Vintage"
  ],
  "tab_size": 2,
  "translate_tabs_to_spaces": true,
  "trim_trailing_white_space_on_save": true,
  "use_tab_stops": true,
  "rulers": [80],
  "file_exclude_patterns":
  [
    ".DS_Store",
    "._*",
    "*~"
  ]
}

Key bindings
[
  {
    "keys": ["super+l"],
    "command": "show_overlay",
    "args": {
      "overlay": "goto",
      "text": ":"
    }
  }
]

Packages
© 2009-2024 Brett Slatkin