Skip to content

Instantly share code, notes, and snippets.

@o3bvv
Last active May 7, 2017 13:53
Show Gist options
  • Save o3bvv/4ebedf995ef94834630b to your computer and use it in GitHub Desktop.
Save o3bvv/4ebedf995ef94834630b to your computer and use it in GitHub Desktop.
Sublime settings
[
{ "keys": ["alt+c", "alt+up"], "command": "upper_case" },
{ "keys": ["alt+c", "alt+down"], "command": "lower_case" },
{ "keys": ["alt+c", "alt+t"], "command": "title_case" },
{ "keys": ["alt+c", "alt+s"], "command": "convert_to_snake"},
{ "keys": ["alt+c", "alt+m"], "command": "convert_to_camel"},
{ "keys": ["alt+c", "alt+p"], "command": "convert_to_pascal"},
{ "keys": ["alt+c", "alt+."], "command": "convert_to_dot"},
{ "keys": ["alt+c", "alt+-"], "command": "convert_to_dash"},
{ "keys": ["alt+c", "alt+w"], "command": "convert_to_separate_words"},
{ "keys": ["alt+c", "alt+/"], "command": "convert_to_slash"},
{ "keys": ["alt+'"], "command": "change_quotes"},
{ "keys": [""], "command": "insert_file_path" },
{ "keys": [""], "command": "insert_file_name" },
{ "keys": [""], "command": "insert_file_directory" },
{ "keys": [""], "command": "insert_relative_path" },
{ "keys": [""], "command": "insert_relative_directory" },
{ "keys": ["ctrl+shift+v"], "command": "paste_and_indent" },
{ "keys": ["alt+shift+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+shift+down"], "command": "select_lines", "args": {"forward": true} }
]
{
"in_process_packages":
[
],
"installed_packages":
[
"A File Icon",
"Agila Theme",
"Anaconda",
"Ansible",
"ASCII Decorator",
"Auto File Name",
"Behat",
"BracketHighlighter",
"Case Conversion",
"ChangeQuotes",
"Clickable URLs",
"Color Highlighter",
"Compare Side-By-Side",
"CSS Extended Completions",
"Dockerfile Syntax Highlighting",
"Extract Lines",
"Git",
"INI",
"Jinja2",
"JSONComma",
"JSX",
"Markdown Extended",
"Modific",
"nginx",
"OmniMarkupPreviewer",
"Path Tools",
"Pretty JSON",
"Python Flake 8 Lint",
"requirementstxt",
"RestructuredText Improved",
"Sidebar Enhancements",
"Type Script",
"View In Browser",
]
}
{
"caret_style": "phase",
"color_scheme": "Packages/User/Agila Origin Oceanic Next (Flake8Lint).tmTheme",
"copy_with_empty_selection": false,
"display_signatures": false,
"ensure_newline_at_eof_on_save": true,
"fade_fold_buttons": false,
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace",
"*.sublime-project",
".coverage",
".noseids",
".git"
],
"find_selected_text": true,
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
"*.egg-info",
"__pycache__",
".tox"
],
"font_options":
[
"subpixel_antialias"
],
"font_size": 13,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Python",
"RestructuredText",
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"indent_to_bracket": true,
"jsoncomma_on_save": true,
"line_padding_bottom": 1,
"line_padding_top": 1,
"pep8_max_line_length": 79,
"rulers":
[
79,
99
],
"scroll_speed": 1.0,
"shift_tab_unindent": true,
"tab_size": 4,
"theme": "Agila Origin.sublime-theme",
"theme_agila_compact_tab": true,
"theme_agila_sidebar_mini": true,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"update_check": false,
"word_wrap": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment