Skip to content

Instantly share code, notes, and snippets.

@nick1n
Last active May 25, 2017 22:17
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nick1n/6642449 to your computer and use it in GitHub Desktop.
Save nick1n/6642449 to your computer and use it in GitHub Desktop.
My Sublime settings
[
// Shows the build console, or at least it use to
{ "keys": ["ctrl+shift+b"], "command": "show_panel", "args": {"panel": "output.exec"} },
// Makes it so Ctrl + Tab or Ctrl + Shift + Tab go between tabs in the
// order that they are displayed and not the order that they were opened.
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }
]
{
// Black text on white background is the best
"color_scheme": "Packages/Color Scheme - Default/Solarized (Light).tmTheme",
// Set to "none" to turn off drawing white space, "selection" to draw only the
// white space within the selection, and "all" to draw all white space
"draw_white_space": "all",
// Who uses vim anyway these days...
"ignored_packages": [ "Vintage" ],
// Hides the fold buttons unless the mouse is over the gutter
"fade_fold_buttons": false,
// Set to true to turn spell checking on by default
"spell_check": true,
// Controls how the indent guides are drawn, valid options are
// "draw_normal" and "draw_active". draw_active will draw the indent
// guides containing the caret in a different color.
"indent_guide_options": [
"draw_normal",
"draw_active"
],
// Set to true to removing trailing white space on save
"trim_trailing_white_space_on_save": true,
// Set to true to ensure the last line of the file ends in a newline
// character when saving
"ensure_newline_at_eof_on_save": true,
// When enabled, hovering over a word will show a popup listing all
// possible locations for the definition symbol. Requires index_files.
"show_definitions": false,
// By default, shift+tab will only unindent if the selection spans
// multiple lines. When pressing shift+tab at other times, it'll insert a
// tab character - this allows tabs to be inserted when tab_completion is
// enabled. Set this to true to make shift+tab always unindent, instead of
// inserting tabs.
"shift_tab_unindent": true,
// Makes tabs with modified files more visible
"highlight_modified_tabs": true,
// Hides close buttons on tabs because middle button just works better
"show_tab_close_buttons": false,
// File indexing parses all files in the side bar, and builds an index of
// their symbols. This is required for Goto Definition to work.
"index_files": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment