Last active
August 23, 2017 08:43
-
-
Save sugarenia/6367617 to your computer and use it in GitHub Desktop.
My Sublime Text 2 user settings. Updated as soon as I find more jazzy stuff to tweak.
This file contains 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
{ | |
// sexeh slow-blinking caret | |
"caret_style": "phase", | |
// cleaning up after yourself | |
"close_windows_when_empty": true, | |
// ST theme of choice - https://github.com/thinkpixellab/flatland | |
"theme": "Flatland.sublime-theme", | |
// lovely color scheme to match the Flatland theme | |
"color_scheme": "Packages/Theme - Flatland/Flatland.tmtheme", | |
// good practice to leave a new line in EOF | |
"ensure_newline_at_eof_on_save": true, | |
// always show fold arrows in gutter | |
"fade_fold_buttons": false, | |
// purty code font | |
"font_face": "Menlo", | |
// love me some antialias | |
"font_options": | |
[ | |
"subpixel_antialias" | |
], | |
// not too big, not too small, just right - for my laptop screen, that is | |
"font_size": 12.0, | |
// have no idea why this is false by default | |
"highlight_line": true, | |
// another essential option | |
"highlight_modified_tabs": true, | |
// yada yada | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
// highlight active & parent indentation line, essential for things like HAML | |
// check this for styling the guides: http://wesbos.com/sublime-text-indentation-guide-lines/ | |
"indent_guide_options": | |
[ | |
"draw_normal", | |
"draw_active" | |
], | |
// allows scrolling past the EOF to avoid looking at the bottom of the screen | |
"scroll_past_end": true, | |
// always show full file path (for Mac OS) | |
"show_full_path": true, | |
// increase legibility by adding some padding to the lines | |
"line_padding_bottom": 1, | |
"line_padding_top": 1, | |
// 2 spaces FTW | |
"translate_tabs_to_spaces": true, | |
"tab_size": 2, | |
// removed dash '-' from word separators to make it easier to select things like .my-class by double-clicking | |
"word_separators": "./\\()\"':,.;<>~!@#$%^&*|+=[]{}`~?", | |
// show a vertical guide at 80 chars to keep code lines short | |
"rulers": [80] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment