~made wakatime a config package, not a module
Wakatime is so easy to configure there's basically no point to it being a module. Thus, I ported it to the config.
This commit is contained in:
@@ -160,9 +160,15 @@ A keybind and a routine
|
|||||||
|
|
||||||
** Wakatime
|
** Wakatime
|
||||||
#+BEGIN_SRC elisp
|
#+BEGIN_SRC elisp
|
||||||
(setq wakatime-api-key (shell-command-to-string "pass Keys/Wakatime"))
|
(use-package! wakatime-mode
|
||||||
|
:after-call pre-command-hook
|
||||||
|
:config
|
||||||
|
(setq wakatime-cli-path (expand-file-name "~/.local/bin/wakatime"))
|
||||||
|
(setq wakatime-api-key (replace-regexp-in-string "\n" "" (shell-command-to-string "pass Keys/Wakatime")))
|
||||||
|
(global-wakatime-mode +1))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
Using new password holder (pass) to help with secure transactions.
|
Using new password holder (pass) to help with secure transactions. Doing all
|
||||||
|
other stuff as well, cos Henrik may remove the Wakatime module.
|
||||||
** Elfeed
|
** Elfeed
|
||||||
#+BEGIN_SRC elisp
|
#+BEGIN_SRC elisp
|
||||||
(after! elfeed
|
(after! elfeed
|
||||||
|
|||||||
@@ -93,7 +93,6 @@
|
|||||||
;;terraform ; infrastructure as code
|
;;terraform ; infrastructure as code
|
||||||
;;tmux ; an API for interacting with tmux
|
;;tmux ; an API for interacting with tmux
|
||||||
;;upload ; map local to remote projects via ssh/ftp
|
;;upload ; map local to remote projects via ssh/ftp
|
||||||
wakatime
|
|
||||||
|
|
||||||
:lang
|
:lang
|
||||||
;;agda ; types of types of types of types...
|
;;agda ; types of types of types of types...
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
; General
|
; General
|
||||||
(package! elcord) ; to flex
|
(package! elcord) ; to flex
|
||||||
(package! wttrin) ; weather in emacs? yes please
|
(package! wttrin) ; weather in emacs? yes please
|
||||||
|
(package! wakatime-mode) ; wakatime
|
||||||
; Coding
|
; Coding
|
||||||
(package! counsel-etags) ; tags are cool
|
(package! counsel-etags) ; tags are cool
|
||||||
(package! py-yapf) ; formatting
|
(package! py-yapf) ; formatting
|
||||||
|
|||||||
Reference in New Issue
Block a user