Created
September 4, 2013 13:38
-
-
Save octavioamu/6437048 to your computer and use it in GitHub Desktop.
Sublime text custom 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
{ | |
"dictionary": "Packages/Language - English/en_US.dic", | |
"font_face": "Source Code Pro", | |
"font_options": | |
[ | |
"subpixel_antialias" | |
], | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"rulers": | |
[ | |
80 | |
], | |
"soda_classic_tabs": false, | |
"soda_folder_icons": true, | |
"spell_check": true, | |
"tab_size": 2, | |
"line_padding_bottom": 1, // adicionando um padding bottom na linha para melhorar a legibilidade | |
"line_padding_top": 1, // adicionando um padding top na linha para melhorar a legibilidade | |
"bold_folder_labels": true, // deixa as pastas do projeto em negrito na barra lateral, diferenciando as pasta dos arquivos | |
"highlight_modified_tabs": true, // Habilita a tab um destaque melhor ao fazer uma modificação no arquivo, ao invés do 'x' tradicional | |
"highlight_line": true, // Highlight na linha que o cursor se encontra | |
"indent_guide_options": // destaca a linha de identação do código | |
[ | |
"draw_normal", | |
"draw_active" | |
], | |
"theme": "Soda Light 3.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment