Skip to content

Instantly share code, notes, and snippets.

@evuez
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evuez/e07b7256e238e8242a59 to your computer and use it in GitHub Desktop.
Save evuez/e07b7256e238e8242a59 to your computer and use it in GitHub Desktop.
Sublime Text settings
// Settings in here override those in "Default/Preferences.sublime-settings",
// and are overridden in turn by file type specific settings.
{
// Columns in which to display vertical rulers
"rulers": [78],
// Set to true to draw a border around the visible rectangle on the minimap.
// The color of the border will be determined by the "minimapBorder" key in
// the color scheme
"draw_minimap_border": true,
// Always visualise the viewport on the minimap, as opposed to only
// showing it on mouse over
"always_show_minimap_viewport": true,
// If enabled, will highlight any line with a caret
"highlight_line": true,
// Valid values are "smooth", "phase", "blink" and "solid".
"caret_style": "solid",
// 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,
// Determines what character(s) are used to terminate each line in new files.
// Valid values are 'system' (whatever the OS uses), 'windows' (CRLF) and
// 'unix' (LF only).
"default_line_ending": "unix",
// By default, auto complete will commit the current completion on enter.
// This setting can be used to make it complete on tab instead.
// Completing on tab is generally a superior option, as it removes
// ambiguity between committing the completion and inserting a newline.
"auto_complete_commit_on_tab": true,
// Controls what happens when pressing the up key while the first item in
// the auto complete window is selected: if false, the window is hidden,
// otherwise the last item in the window is selected. Likewise for the
// down key when the last item is selected.
"auto_complete_cycle": true,
// Makes tabs with modified files more visible
"highlight_modified_tabs": true,
"show_tab_close_buttons": false,
// Valid values are "system", "enabled" and "disabled"
"overlay_scroll_bars": "enabled",
// Display file encoding in the status bar
"show_encoding": false,
// Display line endings in the status bar
"show_line_endings": false,
// folder_exclude_patterns and file_exclude_patterns control which files
// are listed in folders on the side bar. These can also be set on a per-
// project basis.
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", "env"],
// Additional spacing at the top of each line, in pixels
"line_padding_top": 0,
// Additional spacing at the bottom of each line, in pixels
"line_padding_bottom": 0,
// Show folders in the side bar in bold
"bold_folder_labels": 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": "Meslo LG L DZ",
"font_size": 9
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment