Last active
December 14, 2015 04:29
-
-
Save piercemoore/5028975 to your computer and use it in GitHub Desktop.
Helpful Sublime Text keymappings and settings
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
| [ | |
| { | |
| "keys": [ | |
| "alt+g" | |
| ], | |
| "command": "toggle_setting", | |
| "args": { | |
| "setting": "gutter" | |
| } | |
| }, | |
| { | |
| "keys": [ | |
| "alt+w" | |
| ], | |
| "command": "toggle_setting", | |
| "args": { | |
| "setting": "word_wrap" | |
| } | |
| }, | |
| { | |
| "keys": [ | |
| "alt+l" | |
| ], | |
| "command": "toggle_setting", | |
| "args": { | |
| "setting": "line_numbers" | |
| } | |
| }, | |
| { | |
| "keys": [ | |
| "ctrl+t" | |
| ], | |
| "command": "side_bar_new_file2" | |
| }, | |
| { | |
| "keys": [ | |
| "f2" | |
| ], | |
| "command": "side_bar_rename" | |
| }, | |
| { | |
| "keys": [ | |
| "ctrl+alt+f" | |
| ], | |
| "command": "side_bar_find_files_path_containing" | |
| } | |
| ] |
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
| { | |
| "installed_packages": | |
| [ | |
| "AdvancedNewFile", | |
| "Alignment", | |
| "Color Highlighter", | |
| "DocBlockr", | |
| "Gist", | |
| "Git", | |
| "GitGutter", | |
| "Github Tools", | |
| "JsFormat", | |
| "LESS", | |
| "Origami", | |
| "Package Control", | |
| "Sass", | |
| "SideBarEnhancements", | |
| "SideBarGit", | |
| "SmartMarkdown", | |
| "SublimeCodeIntel", | |
| "TextFormatting", | |
| "Theme - Nil", | |
| "ToggleQuotes", | |
| "Xdebug" | |
| ] | |
| } |
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
| { | |
| "bold_folder_labels": true, | |
| "caret_style": "smooth", | |
| "color_scheme": "Packages/User/Monokai Soda.tmTheme", | |
| "fallback_encoding": "UTF-8", | |
| "font_face": "Essential PragmataPro", | |
| "font_options": | |
| [ | |
| "subpixel_antialias" | |
| ], | |
| "font_size": 8, | |
| "gutter": false, | |
| "highlight_line": true, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "line_numbers": true, | |
| "phoenix_color_blue": true, | |
| "phoenix_color_expanded_folder": true, | |
| "phoenix_dirty_bottom_bar": true, | |
| "phoenix_dirty_bottom_bar_red": true, | |
| "phoenix_eighties": true, | |
| "phoenix_highlight_current_tab": true, | |
| "phoenix_sidebar_tree_xsmall": true, | |
| "phoenix_solid_current_tab": true, | |
| "phoenix_tabs_auto_width": true, | |
| "tab_size": 2, | |
| "theme": "Phoenix Light.sublime-theme", | |
| "translate_tabs_to_spaces": true, | |
| "trim_trailing_white_space_on_save": false, | |
| "use_simple_full_screen": true, | |
| "word_wrap": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment