Last active
July 11, 2017 12:38
-
-
Save arkaitzgarro/962d1d914175dc064d89 to your computer and use it in GitHub Desktop.
Sublime Tex 3 configuration
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
Show hidden characters
[ | |
{ "keys": ["super+shift+o"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
{ "keys": ["super+shift+up"], "command": "swap_line_up" }, | |
{ "keys": ["super+shift+down"], "command": "swap_line_down" }, | |
{ "keys": ["super+alt+down"], "command": "goto_definition" }, | |
{ "keys": ["super+backspace"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
] |
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
Babel | |
DocBlocker | |
Git | |
GitGutter | |
JavaScript Beautify | |
Seti_UI | |
SideBarEnhancements | |
SublimeLinter | |
SublimeLinter-contrib-eslint | |
Theme - Monokai | |
Theme - Seti Monokai |
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
{ | |
"binary_file_patterns": | |
[ | |
"*.jpg", | |
"*.jpeg", | |
"*.png", | |
"*.gif", | |
"*.ttf", | |
"*.tga", | |
"*.dds", | |
"*.ico", | |
"*.eot", | |
"*.pdf", | |
"*.swf", | |
"*.jar", | |
"*.zip", | |
"node_modules/**", | |
"bower_components/**", | |
"dist", | |
"test-reports" | |
], | |
"bold_folder_labels": true, | |
"caret_extra_bottom": 2, | |
"caret_extra_top": 2, | |
"caret_extra_width": 2, | |
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
"create_window_at_startup": false, | |
"detect_indentation": false, | |
"draw_indent_guides": false, | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"fade_fold_buttons": false, | |
"folder_exclude_patterns": | |
[ | |
".git", | |
".hg", | |
".idea", | |
".svn", | |
".tmp", | |
"CVS", | |
"node_modules" | |
], | |
"font_face": "Input Mono", | |
"font_options": "subpixel_antialias", | |
"font_size": 15, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"indent_guide_options": | |
[ | |
"draw_normal", | |
"draw_active" | |
], | |
"line_padding_bottom": 2, | |
"line_padding_top": 2, | |
"rulers": | |
[ | |
140 | |
], | |
"save_on_focus_lost": true, | |
"scroll_past_end": true, | |
"shift_tab_unindent": true, | |
"show_encoding": true, | |
"show_tab_close_buttons": false, | |
"skin": "Skins/Monokai", | |
"tab_size": 2, | |
"theme": "Seti.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