-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
DiscordRichPresence.sublime-settings
59 lines (45 loc) · 2.38 KB
/
DiscordRichPresence.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// DiscordRP Default Settings
{
// Whether or not to connect to Discord on startup.
"connect_on_startup": true,
// Specify log level. Valid are "ERROR", "WARNING", "INFO", "DEBUG".
"log_level": "WARNING",
// The format the presence details will be in.
//
// {file} - The file name (Ex. index.js)
// {extension} - The file extension (Ex. js)
// {lang} - The language of the file (Ex. JavaScript)
// {size} - The size of the file
// {sizehf} - The human friendly size of the file
// {loc} - The amount of lines of code of the file
// {project} - The project name (or folder name) that the file is contained in. See `project_name` setting.
// {folders} - The number of folders open
// The format the presence details (top line) will be in.
"details": "Editing {file} for Project {project}",
// The format the presence state (bottom line) will be in.
"state": "Size: {sizehf}",
// The state message when Sublime Text (or the plugin) starts. (NOT FORMATTED)
"start_state": "Just launched",
// Whether or not a timestamp for ST's start time should be included.
"send_start_timestamp": true,
// Whether to change the timestamp when switching to/editing another file.
"time_per_file": true,
// Whether or not to show the elapsed time
"show_elapsed_time": true,
// Whether or not to use the small icon (changes for every language) in the presence.
"small_icon": false,
// Use the language icon as the big icon, overrides 'small_icon'
"big_icon": true,
// Show button for opening git repository on browser
"git_repository_button": false,
// Default message for git repository button (supports format)
"git_repository_message": "Open Repository",
// Defines the order of name sources that should be used for the project name in format stings, if available.
//
// "project_file_name" - The name of the .sublime-project file.
// "project_folder_name" - The name of the folder in the project that the file being edited resides in.
// "folder_name" - The name of the folder containing the file being edited, or the parent folder (when the folder name is 'src').
"project_name": ["project_file_name", "project_folder_name", "folder_name"],
// Time after leaving ST that the activity will be reset, in seconds. Set to 0 to disable.
"idle_timeout": 0,
}