38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
/* 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
 | 
						|
}
 |