Skip to content

Instantly share code, notes, and snippets.

@arkjun
Last active December 18, 2015 05:39
Show Gist options
  • Save arkjun/5733996 to your computer and use it in GitHub Desktop.
Save arkjun/5733996 to your computer and use it in GitHub Desktop.
Sublime Text 3 configuration files
[
{ "keys": ["ctrl+alt+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["ctrl+alt+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["super+k", "super+s"], "command": "convert_to_snake"},
{ "keys": ["super+k", "super+c"], "command": "convert_to_camel"},
{ "keys": ["ctrl+shift+t"], "command": "delete_trailing_spaces" },
{ "keys": ["ctrl+shift+d"], "command": "toggle_trailing_spaces" },
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["super+alt+v"], "command": "insert_file_path" }
]
{
"installed_packages":
[
"Case Conversion",
"ConvertToUTF8",
"Path Tools",
"SideBarEnhancements",
"SublimeERB"
]
}
{
"bold_folder_labels": false,
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme",
"draw_minimap_border": true,
"draw_white_space": "all",
"font_face": "Monaco",
"font_size": 15,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
""
],
"line_padding_bottom": 0,
"line_padding_top": 0,
"margin": 2,
"show_encoding": true,
"show_full_path": true,
"tab_size": 2,
"translate_tabs_to_spaces": false,
"use_simple_full_screen": true,
"word_wrap": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment