Skip to content

Instantly share code, notes, and snippets.

@sepehr
Last active January 19, 2016 03:18
Show Gist options
  • Save sepehr/3567208 to your computer and use it in GitHub Desktop.
Save sepehr/3567208 to your computer and use it in GitHub Desktop.
Sublime Settings
[
{ "keys": ["ctrl+super+a"], "command": "alignment" },
{ "keys": ["ctrl+super+f"], "command": "reindent", "args": {"single_line": false}},
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["super+backspace"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
]
{
"auto_complete": false,
"auto_complete_delay": 250,
"auto_complete_triggers":
[
{
"characters": "<$",
"selector": "text.html"
}
],
"auto_complete_with_fields": true,
"auto_indent": true,
"bold_folder_labels": false,
"color_scheme": "Packages/User/SublimeLinter/base16-ocean.dark (SL).tmTheme",
"default_encoding": "UTF-8",
"default_line_ending": "unix",
"detect_slow_plugins": false,
"drag_text": false,
"draw_white_space": "selection",
"ensure_newline_at_eof_on_save": false,
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
"build",
"dist",
".codeintel"
],
"font_face": "Consolas",
"font_options":
[
"subpixel_antialias"
],
"font_size": 14,
"gutter": true,
"highlight_line": true,
"ignored_packages":
[
"Anaconda",
"EasyDiff",
"SublimeCodeIntel",
"Vintage"
],
"jsdocs_extend_double_slash": false,
"jsdocs_spacer_between_sections": true,
"line_numbers": true,
"line_padding_bottom": 3,
"line_padding_top": 4,
"margin": 4,
"overlay_scroll_bars": "enabled",
"rulers": [120],
"scroll_speed": 1.0,
"show_full_path": true,
"show_line_endings": true,
"show_tab_close_buttons": true,
"smart_indent": true,
"tab_completion": true,
"tab_size": 4,
"theme": "Spacegray.sublime-theme",
"translate_tabs_to_spaces": false,
"trim_trailing_white_space_on_save": true,
"word_separators": "./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?",
"word_wrap": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment