Last active
December 25, 2015 01:08
-
-
Save bradylove/6892356 to your computer and use it in GitHub Desktop.
Sublime settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"auto_complete_commit_on_tab": true, | |
"caret_style": "wide", | |
"color_scheme": "Packages/Tubsted Color Schemes/Tubsted.tmTheme", | |
"default_line_ending": "unix", | |
"draw_white_space": "selection", | |
"ensure_newline_at_eof_on_save": false, | |
"font_face": "Hermit", | |
"font_size": 9, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
], | |
"indent_to_bracket": true, | |
"line_numbers": true, | |
"margin": 2, | |
"rulers": | |
[ | |
80 | |
], | |
"scroll_past_end": true, | |
"shift_tab_unindent": false, | |
"soda_folder_icons": true, | |
"tab_size": 2, | |
"theme": "Soda Dark 3.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": false, | |
"use_simple_full_screen": true, | |
"use_tab_stops": true, | |
"vintage_start_in_command_mode": true | |
} | |
// Key bindings | |
[ | |
{ "keys": ["ctrl+["], "command": "noop" }, | |
{ "keys": ["ctrl+]"], "command": "noop" }, | |
{ "keys": ["ctrl+["], "command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
] | |
// GitGutter Settings | |
{ | |
// Custom path to git binary when not in PATH | |
"git_binary": "", | |
// Live mode evaluates changes every time file is modified, | |
// Set false to disable evaluation after each input | |
"live_mode": true, | |
// Focus Change mode evaluates changes every time a view gets the focus | |
// Set false to disable evaluation when changing views | |
"focus_change_mode": true, | |
// When set to true GitGutter runs asynchronously in a seperate thread | |
// This may cause a small delay between a modification and the icon change | |
// but can increase performance greatly if needed. | |
"non_blocking": true, | |
// Determines whether GitGutter ignores whitespace in modified files. | |
// Set "none" to ensure whitespace is considered in the diff | |
// Set "all" to ignore all white space | |
// Set "eol" to only ignore whitespace at the end of lines | |
"ignore_whitespace": "none", | |
// Add --patience switch to git diff command. See | |
// http://bramcohen.livejournal.com/73318.html for | |
// an example of why you might need this. | |
"patience": true | |
} | |
// Trailing Spaces' default settings. | |
// | |
// In order to tweak the settings, you should NOT edit this file, but instead | |
// the user-specific, empty-by-default version under "Preferences / Package | |
// Settings / Trailing Spaces / Settings - User". | |
// | |
// See Trailing Spaces' README for detailled instructions. | |
{ | |
// By default, Trailing Spaces is "live". It means the trailing spaces | |
// regions will be matched in the background, and highlighted if a color | |
// scope is defined, when the document is opened and edited. | |
// Set to false to disable live matching and highlighting (the deletion | |
// command remains available, so-called "lazy matching"). | |
"trailing_spaces_enabled" : true, | |
// Highlight color is specified as a scope. You may define and use a custom | |
// scope to better fit your colorscheme. | |
"trailing_spaces_highlight_color" : "invalid", | |
// By default, empty lines are cleared as well when calling the deletion | |
// command. | |
// Set to false to ignore empty lines upon deletion. | |
"trailing_spaces_include_empty_lines" : true, | |
// By default, the line being currently edited will have its trailing | |
// spaces highlighted. | |
// Set to false to ignore trailing spaces on the edited line. | |
"trailing_spaces_include_current_line" : true, | |
// By default, trailing spaces are deleted within the whole document. | |
// Set to true to affect only the lines you edited since last save. | |
// Trailing spaces will still be searched for and highlighted in the whole | |
// document. | |
"trailing_spaces_modified_lines_only": false, | |
// By default, nothing happens on save. | |
// Set to true to trim trailing spaces before saving, with respect to the | |
// other settings. | |
"trailing_spaces_trim_on_save": true, | |
// By default, deleting trailing spaces does not cause the document to be | |
// saved. | |
// Set to true to force saving after trailing spaces have been deleted. | |
// This setting is irrelevant and will be ignored if trim_on_save is true. | |
"trailing_spaces_save_after_trim": false, | |
// ---- NEXT SETTINGS ARE FOR POWER USERS ONLY! ---- | |
// Highlighting will be disabled if the edited file's size is larger than | |
// this. | |
// Adjust the value (in number of chars) to whatever fits your performance. | |
"trailing_spaces_file_max_size" : 1048576, | |
// By default, only simple spaces and tabs are matched as "trailing spaces". | |
"trailing_spaces_regexp": "[ \\s]+(?![\\w\\W])" | |
} | |
# Installed Packages | |
AngularJS | |
AngularJS (CoffeScript) | |
CoffeeScript | |
Slim | |
GitGutter | |
Cucumber | |
fish-shell | |
GoSublime | |
scss | |
SublimeGit | |
Rake | |
Rspec | |
Ruby Slim | |
Theme - Flatland | |
Color Scheme Tubsted | |
Theme-Soda | |
TrailingSpaces |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment