Skip to content

Instantly share code, notes, and snippets.

@jackpinto
Last active August 29, 2015 13:59
Show Gist options
  • Save jackpinto/10660848 to your computer and use it in GitHub Desktop.
Save jackpinto/10660848 to your computer and use it in GitHub Desktop.
Configurações do SublimeText
[
{
"keys": [
"alt+shift+up"
],
"command": "select_lines",
"args": {
"forward": false
}
},
{
"keys": [
"alt+shift+down"
],
"command": "select_lines",
"args": {
"forward": true
}
},
{
"keys": [
"ctrl+k",
"ctrl+c"
],
"command": "toggle_comment",
"args": {
"block": false
}
},
{
"keys": [
"ctrl+k",
"ctrl+d"
],
"command": "toggle_comment",
"args": {
"block": true
}
}
]
{
"installed_packages":
[
"AngularJS",
"BracketHighlighter",
"CSS Completions",
"DocBlockr",
"Emmet",
"File Navigator",
"FileBrowser",
"Find++",
"Git",
"GitGutter",
"HTML-CSS-JS Prettify",
"HTML5",
"Jasmine BDD",
"jQuery",
"Package Control",
"SublimeCodeIntel",
"SublimeLinter",
"Theme - Spacegray"
]
}
{
"bold_folder_labels": true,
"color_scheme": "Packages/Theme - Nil/Tubnil.tmTheme",
"detect_indentation": false,
"draw_indent_guides": true,
"draw_white_space": "selection",
"extra_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"
],
"extra_folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS"
],
"fade_fold_buttons": false,
"font_face": "Anonymous Pro",
"font_size": 11,
"git_binary": "C:\\Program Files (x86)\\Git\\bin\\git.exe",
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 2,
"line_padding_top": 2,
"show_encoding": true,
"sublimelinter_delay": 500,
"tab_size": 4,
"theme": "Nil.sublime-theme",
"todo":
{
"case_sensitive": true,
"patterns":
{
"CHANGED": "CHANGED[\\s]*?:+(?P<changed>\\S.*)$",
"FIXME": "FIX ?ME[\\s]*?:+(?P<fixme>\\S.*)$",
"NOTE": "NOTE[\\s]*?:+(?P<note>.*)$",
"TODO": "TODO[\\s]*?:+(?P<todo>.*)$"
}
},
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"use_tab_stops": true,
"word_separators": "./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?",
"word_wrap": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment