Skip to content

Instantly share code, notes, and snippets.

@jonkiddy
Last active July 23, 2018 15:01
Show Gist options
  • Save jonkiddy/8d21a165d0f64437278e to your computer and use it in GitHub Desktop.
Save jonkiddy/8d21a165d0f64437278e to your computer and use it in GitHub Desktop.
Sublime Text Preferences
keymap:
[
// Sublime
{ "keys": ["super+shift+i"], "command": "reindent" },
{ "keys": ["super+shift+o"], "command": "expand_tabs" },
{ "keys": ["command+shift+k"], "command": "toggle_side_bar" },
// PHP Companion
{ "keys": ["super+shift+u"], "command": "find_use" },
{ "keys": ["super+shift+n"], "command": "insert_php_constructor_property" },
// Simple PHPUnit
{ "keys": ["super+shift+."], "command": "simple_php_unit" },
{ "keys": ["super+shift+,"], "command": "simple_php_unit", "args": { "test_current_file": true } },
]
dark theme:
{
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme",
"theme": "Material-Theme-Darker.sublime-theme",
"font_face": "Menlo",
"font_size": 14,
"always_show_minimap_viewport": false,
"bold_folder_labels": true,
"rulers": [80],
"highlight_line": true,
"word_wrap": true,
"tab_size": 4,
"translate_tabs_to_spaces": true,
"ignored_packages": ["Vintage"],
"indent_guide_options": ["draw_normal","draw_active"],
"line_numbers": true,
"line_padding_bottom": 3,
"line_padding_top": 3,
"material_theme_bold_tab": true,
"overlay_scroll_bars": "enabled",
"trim_trailing_white_space_on_save": true,
"shift_tab_unindent": true,
"show_encoding": true,
"create_window_at_startup": false,
"caret_style": "solid",
"caret_extra_width": 1,
"ensure_newline_at_eof_on_save": true
}
light theme:
{
"always_show_minimap_viewport": false,
"bold_folder_labels": true,
"caret_extra_width": 1,
"caret_style": "solid",
"color_scheme": "Packages/Colorsublime - Themes/LAZY.tmTheme",
"create_window_at_startup": false,
"ensure_newline_at_eof_on_save": true,
"font_face": "Fira Code",
"font_size": 14,
"highlight_line": true,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_numbers": true,
"line_padding_bottom": 3,
"line_padding_top": 3,
"material_theme_bold_tab": true,
"overlay_scroll_bars": "enabled",
"rulers": [80],
"shift_tab_unindent": true,
"show_encoding": true,
"tab_size": 4,
"theme": "Material-Theme-Lighter.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true
}
# Current
{
"always_show_minimap_viewport": false,
"bold_folder_labels": true,
"caret_extra_width": 1,
"caret_style": "solid",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme",
"create_window_at_startup": false,
"ensure_newline_at_eof_on_save": true,
"font_face": "Fira Code",
"font_size": 14,
"highlight_line": true,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_numbers": true,
"line_padding_bottom": 2,
"line_padding_top": 2,
"material_theme_bold_tab": true,
"overlay_scroll_bars": "enabled",
"rulers":
[
80
],
"shift_tab_unindent": true,
"show_encoding": true,
"tab_size": 4,
"theme": "Material-Theme-Darker.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment