Skip to content

Instantly share code, notes, and snippets.

@maxbelyanin
Last active August 29, 2015 14:23
Show Gist options
  • Save maxbelyanin/cafd2171c18e02f40c68 to your computer and use it in GitHub Desktop.
Save maxbelyanin/cafd2171c18e02f40c68 to your computer and use it in GitHub Desktop.
Preferences.sublime-settings
{
// Additional situations to trigger auto complete
"auto_complete_triggers":
[
{
"characters": ".@",
"selector": "source.coffee, source.litcoffee, source.coffee.md"
}
],
// Show folders in the side bar in bold
"bold_folder_labels": true,
"coffee_path": "/usr/local/lib/node_modules/coffee-script/bin",
// Sets the colors used within the text area
"color_scheme": "Packages/Colorcoder/Monokai (Colorcoded) (SL) (Colorcoded).tmTheme",
// Allows tabs to scroll left and right, instead of simply shrinking
"enable_tab_scrolling": 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,
// If true, the selected text will be copied into the find panel when it's
// shown.
// On OS X, this value is overridden in the platform specific settings, so
// you'll need to place this line in your user settings to override it.
"find_selected_text": true,
// Fold buttons are the triangles shown in the gutter to fold regions of text
"fold_buttons": true,
// Note that the font_face and font_size are overridden in the platform
// specific settings file, for example, "Preferences (Linux).sublime-settings".
// Because of this, setting them here will have no effect: you must set them
// in your User File Preferences.
"font_face": "Dejavu Sans Mono",
"font_size": 10,
// If enabled, will highlight any line with a caret
"highlight_line": true,
// Makes tabs with modified files more visible
"highlight_modified_tabs": true,
// List any packages to ignore here. When removing entries from this list,
// a restart may be required if the package contains plugins.
"ignored_packages": ["Vintage"],
"node_path": "/usr/local/bin",
"original_color_scheme": "Packages/User/SublimeLinter/Monokai (Colorcoded) (SL).tmTheme",
// Set to false to disable scrolling past the end of the buffer.
// On OS X, this value is overridden in the platform specific settings, so
// you'll need to place this line in your user settings to override it.
"scroll_past_end": true,
// Show the full path to files in the title bar.
// On OS X, this value is overridden in the platform specific settings, so
// you'll need to place this line in your user settings to override it.
"show_full_path": true,
// The number of spaces a tab is considered equal to
"tab_size": 2,
// Set to true to insert spaces when tab is pressed
"translate_tabs_to_spaces": true,
// Set to true to removing trailing white space on save
"trim_trailing_white_space_on_save": true,
// Columns in which to display vertical rulers
// Trims white space added by auto_indent when moving the caret off the
// line.
"trim_automatic_white_space": true,
// Columns in which to display vertical rulers
"rulers": [80]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment