feat(SublimeText2.GitPackages): cache packages

This commit is contained in:
Iristyle
2013-04-04 08:55:33 -04:00
parent c3efdad2c2
commit c0f9c6d45a
109 changed files with 15317 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
/* Sublime GitHub default settings */
{
"accounts": {
"GitHub": {
"base_uri": "https://api.github.com",
"github_token": ""
}
},
// You can add support for a private GitHub installation by adding another entry
// to the accounts entry in the User settings file (Preferences ->
// Package Settings -> GitHub -> Settings - User). You can then switch between
// accounts via the GitHub: Switch Accounts command
//
// "YourCo": {
// "base_uri": "https://github.yourco.com/api/v3",
// "github_token": ""
// }
// The format of the each line in the list of gists.
// The value is either a Python format string, or a list of Python format
// strings. In the latter case, each element of the list will be a separate
// line in the select list.
// Valid parameters:
// filename - filename of [first file in] gist
// description - description of gist
// index - 1-based index of gist in the list
//
// Some things to try:
// "gist_list_format": "%(index)d. %(filename)s: %(description)s",
// "gist_list_format": ["%(filename)s", "%(description)s"],
"gist_list_format": "%(filename)s: %(description)s",
// If true, display the list of gists in a monospace font
"gist_list_monospace": false,
// output debug info to the console
"debug": false
}