Last active
March 1, 2016 20:23
-
-
Save vhenzl/2cc056168fe9e0d99e70 to your computer and use it in GitHub Desktop.
Sublime Text 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
# Ignore everything | |
* | |
# But not these files... | |
!.gitignore | |
!Default (Windows).sublime-keymap | |
!Preferences.sublime-settings | |
!Package Control.sublime-settings | |
!PHP.sublime-settings | |
!phpfmt.sublime-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
Show hidden characters
[ | |
{ | |
"keys": ["alt+shift+down"], | |
"command": "select_lines", "args": {"forward": true} | |
}, | |
{ | |
"keys": ["alt+shift+up"], | |
"command": "select_lines", "args": {"forward": false} | |
}, | |
{ | |
"keys": ["ctrl+alt+c"], | |
"command": "insert", "args": {"characters": "&"} | |
}, | |
{ | |
"keys": ["ctrl+e", "c"], | |
"command": "toggle_comment", "args": {"block": false} | |
}, | |
{ | |
"keys": ["ctrl+e", "ctrl+c"], | |
"command": "toggle_comment", "args": {"block": true} | |
}, | |
{ | |
"keys": ["ctrl+e", "ctrl+u"], | |
"command": "toggle_comment", "args": {"block": true} | |
}, | |
{ | |
"keys": ["ctrl+e", "u"], | |
"command": "toggle_comment", "args": {"block": false} | |
}, | |
{ | |
"keys": ["ctrl+m", "c"], | |
"command": "show_original_part" | |
}, | |
{ | |
"keys": ["ctrl+m", "d"], | |
"command": "show_diff" | |
}, | |
{ | |
"keys": ["ctrl+m", "r"], | |
"command": "replace_modified_part" | |
}, | |
{ | |
"keys": ["ctrl+m", "u"], | |
"command": "uncommitted_files" | |
} | |
] |
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
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"DocBlockr", | |
"Dockerfile Syntax Highlighting", | |
"EditorConfig", | |
"Gitignore", | |
"Keymap Redefiner", | |
"Keymaps", | |
"Markdown Extended", | |
"Markdown Preview", | |
"Modific", | |
"Monokai Extended", | |
"Package Control", | |
"PackageResourceViewer", | |
"phpfmt", | |
"SublimeGit", | |
"SyncedSideBar", | |
"Theme - Flatland" | |
] | |
} |
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
{ | |
"extensions": | |
[ | |
"latte" | |
] | |
} |
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
{ | |
"autocomplete": true, | |
"autoimport": true, | |
"format_on_save": true, | |
"indent_with_space": 4, | |
"php_bin": "c:/Portable Program Files/php/php.exe", | |
"psr1": true, | |
"psr1_naming": true, | |
"psr2": true, | |
"smart_linebreak_after_curly": true, | |
"version": 1 | |
} |
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
{ | |
"color_scheme": "Packages/Theme - Flatland/Flatland Monokai.tmTheme", | |
"font_size": 10, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"reveal-on-activate": false, | |
"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