add wakatime config

Amolith created

Change summary

.chezmoi.yaml.tmpl    |  2 ++
dot_wakatime.cfg.tmpl | 31 +++++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)

Detailed changes

.chezmoi.yaml.tmpl 🔗

@@ -1,8 +1,10 @@
 {{- $gotify_token := promptString "gotify_token" -}}
 {{- $dav_url := promptString "dav_url" -}}
+{{- $wakapi_key := promptString "wakapi_key" -}}
 
 data:
   gotify_token: {{ $gotify_token | quote }}
   dav_url: {{ $dav_url | quote }}
+  wakapi_key: {{ $wakapi_key | quote }}
 
 pager: delta

dot_wakatime.cfg.tmpl 🔗

@@ -0,0 +1,31 @@
+[settings]
+debug                          = false
+api_url                        = https://waka.secluded.site/api/heartbeat
+api_key                        = {{ .wakapi_key }}
+hide_file_names                = false
+hide_project_names             = false
+hide_branch_names              = 
+exclude                        = """
+    ^COMMIT_EDITMSG$
+    ^TAG_EDITMSG$
+    ^/var/(?!www/).*
+    ^/etc/"""
+include                        = """
+    .*"""
+include_only_with_project_file = false
+exclude_unknown_project        = false
+status_bar_enabled             = true
+status_bar_coding_activity     = true
+status_bar_hide_categories     = false
+offline                        = true
+no_ssl_verify                  = false
+ssl_certs_file                 = 
+timeout                        = 30
+log_file                       = 
+
+[git]
+submodules_disabled = false
+
+[internal]
+backoff_at      = 
+backoff_retries = 0