Skip to content

Instantly share code, notes, and snippets.

@guillaumevoisin
Last active August 29, 2015 14:11
Show Gist options
  • Save guillaumevoisin/fd480b09ed05948f3d4d to your computer and use it in GitHub Desktop.
Save guillaumevoisin/fd480b09ed05948f3d4d to your computer and use it in GitHub Desktop.
Sublime Text Configuration
Sur Ubuntu:
Keyboard
[
{ "keys": ["ctrl+keypad_divide"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+keypad_divide"], "command": "toggle_comment", "args": { "block": true } },
]
Settings
{
"color_scheme": "Packages/User/Monokai (SL).tmTheme",
"ensure_newline_at_eof_on_save": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"rulers":
[
80
],
"translate_tabs_to_spaces": true,
"word_wrap": true
}
Extensions
{
"installed_packages":
[
"Alignment",
"DocBlockr",
"Emmet",
"Git",
"GitGutter",
"Github Tools",
"PHP Companion",
"Phpcs",
"SideBarEnhancements",
"SublimeLinter",
"SyncedSideBar",
"Twig"
]
}
PHPCS
{
"php_cs_fixer_executable_path": "/usr/local/bin/php-cs-fixer",
"php_cs_fixer_on_save": true,
}
DocBlockr
{
"jsdocs_spacer_between_sections": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment