Last active
January 3, 2016 03:58
-
-
Save imvision/8405343 to your computer and use it in GitHub Desktop.
Sublime Text 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
{ | |
"word_wrap": true, | |
"font_face": "Inconsolata", | |
"font_size": 14, | |
"highlight_line": true, | |
"trim_trailing_white_space_on_save": true, | |
"auto_complete_commit_on_tab": true, | |
"draw_white_space": "all", | |
"translate_tabs_to_spaces": true, | |
"tab_size": 2, | |
"rulers": [80] | |
} |
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
{ | |
// Makes folders stand out from files | |
"bold_folder_labels": true, | |
// Clean colour scheme, comes with Flatland theme | |
"color_scheme": "Packages/Theme - Flatland/Flatland Monokai.tmTheme", | |
// Switch to `all` to always show invisibles | |
"draw_white_space": "selection", | |
// Always adds a trailing newline character | |
"ensure_newline_at_eof_on_save": true, | |
// Exludes directories from showing up in the sidebar and search | |
"folder_exclude_patterns": [ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
"node_modules", | |
"bower_components" | |
], | |
// Source Code Pro is my favourite monospace font - download at https://github.com/adobe/source-code-pro | |
"font_face": "Source Code Pro", | |
// Current working font size | |
"font_size": 15.0, | |
// Highlight the current line - makes it easier to focus and find where you are typing | |
"highlight_line": true, | |
// Make it obvious when I haven't saved something | |
"highlight_modified_tabs": true, | |
// Ignore VIM mode, it plays havoc with some of my other preferred shortcuts | |
"ignored_packages": [ | |
"Vintage" | |
], | |
// Draw all indent guides, but also draw the carets indent guide in a different color | |
"indent_guide_options": [ | |
"draw_active", | |
"draw_normal" | |
], | |
// Removes the extra whitespace using `Source Sans Pro` comes with | |
"line_padding_bottom": -1, | |
"line_padding_top": -1, | |
// Render a vertical ruler at the 80 character mark, tries to keep me considerate | |
"rulers": [ | |
80 | |
], | |
// Saving everytime I lose focus causes all sorts of conflicts | |
"save_on_focus_lost": false, | |
// Always allow me to scroll beyond the last line | |
"scroll_past_end": true, | |
// Enable `shift + tab` to cause unindent | |
"shift_tab_unindent": true, | |
// Override tab size to equal 2 spaces | |
"tab_size": 2, | |
// Beautiful and minimal theme - download at https://github.com/thinkpixellab/flatland | |
"theme": "Flatland Dark.sublime-theme", | |
// Use spaces for indentation | |
"translate_tabs_to_spaces": true, | |
// Removes all the trailing white space on save | |
"trim_trailing_white_space_on_save": true, | |
// Wraps lines instead of enabling horizontal scroll | |
"word_wrap": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment