Sublime Text Preferences
========================
.. contents::
Packages
--------
Package Manager:
wbond.net
Plugins
- Bracket Highlighter
- DashDoc
- Emmet
- Javascript Beautify
- Markdown Editing
- Pretty JSON
- Schemr
- Themr
- PlainTask
- SublimeLinter
- GhostText
Theme & Colorschemes
- Theme - Soda
- Theme - Spacefunk
- Theme - Nil
- Theme - Phoenix
- Dogs
- Kwrite
- carlcalderon
- Base 16
- Dogs
- KWrite
- Material Theme
- Oceanic Next
- ONe Dark
- Zissou
- Tomorrow
- Frontend Light
- Zissou
- Theme - Primer
- Theme - Cobalt2
- Theme - Nil
- Theme - Phoenix
Preferences
-----------
Settings - User
```````````````
.. code-block:: javascript
{
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"caret_style": "solid",
"color_scheme": "Packages/User/SublimeLinter/Tomorrow-Night-Bright (SL).tmTheme",
"default_line_ending": "unix",
"ensure_newline_at_eof_on_save": true,
"font_face": "Fira Mono",
"font_size": 14,
"ignored_packages":
[
"Markdown",
"Vintage"
],
// If true, the current mode will be reset to normal mode when a tab gets activated.
"vintageous_reset_mode_when_switching_tabs": false,
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"overlay_scroll_bars": "enabled",
"rulers":
[
80,
120
],
"theme": "Cobalt2.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
Key Bindings - User
```````````````````
Color Scheme
````````````
git clone git@github.com:reorx/colorscheme-textmate.git
Copy the folder to ~/.config/sublime-text-2/Packages
Package Settings
````````````````
SublimeLinter - Settings - User:
.. code-block:: javascript
{
"user": {
"SublimeLinter": {
"@python": 2
},
"debug": true,
"delay": 0.25,
"error_color": "D02000",
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
"gutter_theme_excludes": [],
"lint_mode": "save only",
"linters": {
"flake8": {
"@disable": false,
"args": [
"--ignore=E265,E501"
],
"builtins": "",
"excludes": [],
"ignore": "",
"jobs": "1",
"max-complexity": -1,
"max-line-length": null,
"select": "",
"show-code": false
},
"jshint": {
"@disable": false,
"args": [],
"excludes": []
},
"jslint": {
"@disable": true,
"args": [],
"excludes": []
}
},
"mark_style": "outline",
"no_column_highlights_line": false,
"passive_warnings": false,
"paths": {
"*": [],
"linux": [],
"osx": [],
"windows": []
},
"python_paths": {
"linux": [],
"osx": [],
"windows": []
},
"rc_search_limit": 3,
"shell_timeout": 10,
"show_errors_on_save": false,
"show_marks_in_minimap": true,
"syntax_map": {
"html (django)": "html",
"html (rails)": "html",
"html 5": "html",
"php": "html",
"python": "python",
"python django": "python"
},
"warning_color": "DDB700",
"wrap_find": true
}
}