Created
August 13, 2016 00:56
-
-
Save isitannarli/837fdf851716528a2f35f4dd79eab336 to your computer and use it in GitHub Desktop.
Sublime Text Config
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": ["ctrl+b"], | |
| "command": "duplicate_line" | |
| }, | |
| { | |
| "keys": ["ctrl+shift+n"], | |
| "command": "new_window" | |
| }, | |
| { | |
| "keys": ["ctrl+q"], | |
| "command": "toggle_comment", | |
| "args": { | |
| "block": false | |
| } | |
| }, | |
| { | |
| "keys": ["ctrl+shift+q"], | |
| "command": "toggle_comment", | |
| "args": { | |
| "block": true | |
| } | |
| } | |
| ] |
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
| { | |
| "always_show_minimap_viewport": true, | |
| "auto_complete": true, | |
| "bold_folder_labels": true, | |
| "color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
| "default_line_ending": "unix", | |
| "detect_indentation": false, | |
| "disable_formatted_linebreak": true, | |
| //"draw_white_space": "all", | |
| "ensure_newline_at_eof_on_save": true, | |
| "expand_tabs_on_save": true, | |
| "fallback_encoding": "UTF-8", | |
| "folder_exclude_patterns": | |
| [ | |
| "views_cache", | |
| ".svn", | |
| ".git", | |
| ".hg", | |
| "tmp", | |
| "cache", | |
| "CVS", | |
| "_build", | |
| "dist", | |
| "build", | |
| ".DS_Store", | |
| "Desktop.ini", | |
| "*.pyc", | |
| "._*", | |
| "Thumbs.db", | |
| ".Spotlight-V100", | |
| ".Trashes" | |
| ], | |
| "font_face": "Source Code Pro", | |
| "font_size": 10.1, | |
| "highlight_line": true, | |
| "highlight_modified_tabs": true, | |
| "ignored_packages": | |
| [ | |
| "Open Folder", | |
| "Vintage" | |
| ], | |
| "rulers": | |
| [ | |
| 80 | |
| ], | |
| "shift_tab_unindent": true, | |
| "tab_size": 4, | |
| "translate_tabs_to_spaces": true, | |
| "trim_trailing_white_space_on_save": true, | |
| "update_check": false, | |
| "use_tab_stops": true, | |
| "word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?", | |
| "word_wrap": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment