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
{ | |
"folders": [ | |
{ | |
"name": "Root", | |
"path": "/", | |
"folder_exclude_patterns": ["config", "db", "modules", "node_modules", "public", "src", "storage", "templates", "vendor" ] | |
}, { | |
"name": "Templates", | |
"path": "templates" | |
}, { |
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
{ | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"detect_indentation": false, | |
"detect_slow_plugins": false, | |
"drag_text": false, | |
"fade_fold_buttons": false, | |
"font_options": | |
[ |
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
# Needed for MAMP on Windows | |
Options +SymLinksIfOwnerMatch | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
# www redirects | |
RewriteCond %{HTTPS} off | |
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] | |
RewriteRule ^(.*)$ http://%1/$1 [R=301,L] |
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
[ | |
{ "keys": ["f5"], "command": "reindent"}, // auto indent | |
{ "keys": ["ctrl+shift+up"], "command": "select_lines", "args": {"forward": false} }, // multiselect | |
{ "keys": ["ctrl+shift+down"], "command": "select_lines", "args": {"forward": true} }, // multiselect | |
{ "keys": ["ctrl+r"], "command": "show_panel", "args": {"panel": "replace"} }, // replace | |
{ "keys": ["alt+shift+w"], "command": "insert_snippet", "args": { "name": "Packages/XML/Snippets/long-tag.sublime-snippet" } }, // wrap in tag | |
{ "keys": ["ctrl+t"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, // switch files | |
{ "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" }, // switch workspaces | |
{ "keys": ["ctrl+shift+s"], "command": "save_all" }, // save all | |
{ "keys": ["alt+left"], "command": "move_to", "args": {"to": "bol", "extend": false} }, // Beginning of line OSX behaviour |
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
[ | |
{ "keys": ["f5"], "command": "reindent"}, // auto indent | |
{ "keys": ["super+r"], "command": "show_panel", "args": {"panel": "replace"} }, // replace | |
{ "keys": ["super+shift+w"], "command": "insert_snippet", "args": { "name": "Packages/XML/Snippets/long-tag.sublime-snippet" } }, // wrap in tag | |
{ "keys": ["super+t"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, // switch files | |
{ "keys": ["super+option+p"], "command": "prompt_select_workspace" }, // switch workspaces | |
] |