Skip to content

Instantly share code, notes, and snippets.

@juizmill
Last active December 10, 2015 11:58
Show Gist options
  • Select an option

  • Save juizmill/1dccff56a933ee3ab14e to your computer and use it in GitHub Desktop.

Select an option

Save juizmill/1dccff56a933ee3ab14e to your computer and use it in GitHub Desktop.
{
"bold_folder_labels": true,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme",
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
"*.sublime-project",
"*.sublime-workspace",
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
".idea",
".phpintel"
],
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"preview_on_click": false,
"rulers":
[
120
],
"show_encoding": true,
"theme": "Material-Theme-Darker.sublime-theme",
"trailing_spaces_trim_on_save": true,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": false
}
@juizmill
Copy link
Author

Configurando projeto:

{
    "folders":
    [
        {
            "follow_symlinks": true,
            "path": "caminho-completo-do-projeto"
        }
    ],
    "settings": {
        "codeintel_language_settings": {
            "PHP": {
                "codeintel_scan_extra_dir":
                [
                    "caminho-completo-do-projeto"
                ]
            }
        }
    }
}

@juizmill
Copy link
Author

Plugins instalados:

screen shot 2015-10-27 at 09 06 02

@juizmill
Copy link
Author

@juizmill
Copy link
Author

Default.sublime-mousemap

[
    {
        "button": "button1",
        "count": 1,
        "modifiers": ["ctrl"],
        "press_command": "drag_select",
        "command": "goto_definition"
    }
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment