36 lines
1.4 KiB
Text
36 lines
1.4 KiB
Text
// WakaTime Default Settings
|
|
// Use this as a reference when editing your local User settings.
|
|
// This settings file will be overwritten when upgrading.
|
|
|
|
{
|
|
// Your api key from https://wakatime.com/#apikey
|
|
// Set this in your User specific WakaTime.sublime-settings file.
|
|
"api_key": "",
|
|
|
|
// Debug mode. Set to true for verbose logging. Defaults to false.
|
|
"debug": false,
|
|
|
|
// Proxy with format https://user:pass@host:port or socks5://user:pass@host:port or domain\\user:pass.
|
|
"proxy": "",
|
|
|
|
// Ignore files; Files (including absolute paths) that match one of these
|
|
// POSIX regular expressions will not be logged.
|
|
"ignore": ["^/tmp/", "^/etc/", "^/var/(?!www/).*", "COMMIT_EDITMSG$", "PULLREQ_EDITMSG$", "MERGE_MSG$", "TAG_EDITMSG$"],
|
|
|
|
// Include files; Files (including absolute paths) that match one of these
|
|
// POSIX regular expressions will bypass your ignore setting.
|
|
"include": [".*"],
|
|
|
|
// Status bar message. Set to false to hide status bar message.
|
|
// Defaults to true.
|
|
"status_bar_message": true,
|
|
|
|
// Status bar message format.
|
|
"status_bar_message_fmt": "WakaTime {status} %I:%M %p",
|
|
|
|
// Obfuscate file paths when sending to API. Your dashboard will no longer display coding activity per file.
|
|
"hidefilenames": false,
|
|
|
|
// Python binary location. Uses python from your PATH by default.
|
|
"python_binary": ""
|
|
}
|