Skip to content

Instantly share code, notes, and snippets.

@bbrks
Created July 15, 2015 23:15
Show Gist options
  • Save bbrks/ca995c42b176e456161d to your computer and use it in GitHub Desktop.
Save bbrks/ca995c42b176e456161d to your computer and use it in GitHub Desktop.
[WIP] Rough guide for my personal Sublime Text setup

Packages

  • All Autocomplete
  • DocBlockr
  • GitGutter-Edge
  • SublimeCodeIntel
  • SublimeLinter
  • sublimeLinter-annotations
  • SublimeLinter-php
  • SublimeLinter-phpcs
  • SublimeLinter-phpmd
  • Theme - Spacegray

Preferences

{
    "caret_style": "phase",
    "color_scheme": "Packages/User/SublimeLinter/base16-ocean.dark (SL).tmTheme",
    "detect_indentation": true,
    "draw_white_space": "all",
    "dictionary": "Packages/Language - English/en_GB.dic",
    "ensure_newline_at_eof_on_save": false,
    "font_size": 11,
    "highlight_line": true,
    "ignored_packages":
    [
        "Vintage"
    ],
    "rulers":
    [
        80,
        125
    ],
    "scroll_past_end": true,
    "spell_check": true,
    "tab_size": 4,
    "theme": "Spacegray.sublime-theme",
    "translate_tabs_to_spaces": true,
    "trim_automatic_white_space": false,
    "trim_trailing_white_space_on_save": false,
    "word_wrap": "false"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment