Skip to content

Instantly share code, notes, and snippets.

@vhenzl
Last active March 1, 2016 20:23
Show Gist options
  • Save vhenzl/2cc056168fe9e0d99e70 to your computer and use it in GitHub Desktop.
Save vhenzl/2cc056168fe9e0d99e70 to your computer and use it in GitHub Desktop.
Sublime Text settings
# Ignore everything
*
# But not these files...
!.gitignore
!Default (Windows).sublime-keymap
!Preferences.sublime-settings
!Package Control.sublime-settings
!PHP.sublime-settings
!phpfmt.sublime-settings
[
{
"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"
}
]
{
"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"
]
}
{
"extensions":
[
"latte"
]
}
{
"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
}
{
"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