Last active
May 8, 2017 03:41
-
-
Save rafaelcavalcante/157b9df172e488d329925095607c7077 to your computer and use it in GitHub Desktop.
Sublime Text 3 - User Preferences
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
Show hidden characters
{ | |
// editor behavior | |
"ensure_newline_at_eof_on_save": true, | |
// you-will-never-browse-this-while-coding-etc stuff | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
"node_modules" | |
], | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
// making the fonts awesome in macOS | |
"font_options": | |
[ | |
"no_round" | |
], | |
// setting the theme... | |
"theme": "predawn-DEV.sublime-theme", | |
"color_scheme": "Packages/Predawn/predawn.tmTheme", | |
// setting up theme-specific stuff | |
"predawn_findreplace_xsmall": true, | |
"predawn_quick_panel_xlarge": true, | |
"predawn_sidebar_xlarge": true, | |
// tiny adjustments in sublime text that works fine the the Predawn theme | |
"font_size": 15, | |
"highlight_line": true, | |
"word_wrap": false, | |
"line_padding_bottom": 2.5, | |
"line_padding_top": 2.5, | |
} | |
/* | |
* The Predawn theme(1) is available via Package Control(2) | |
* | |
* 1. https://packagecontrol.io/packages/Predawn%20Twilight%20Theme | |
* 2. https://packagecontrol.io/ | |
* | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment