Skip to content

Instantly share code, notes, and snippets.

@rafaelcavalcante
Last active May 8, 2017 03:41
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 rafaelcavalcante/157b9df172e488d329925095607c7077 to your computer and use it in GitHub Desktop.
Save rafaelcavalcante/157b9df172e488d329925095607c7077 to your computer and use it in GitHub Desktop.
Sublime Text 3 - User Preferences
{
// 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