summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Sior <aho@sior.be>2022-05-30 16:24:09 +0200
committerAlejandro Sior <aho@sior.be>2022-05-30 16:24:09 +0200
commit55b200f6c88ee8c01a3c84fa45ca12a43e7dcece (patch)
treeade49421a1417106d60c6c7ee5fe20cb036bda8c
parent00bfbe9f9cefcd6ae510f334111b3b1e5ee62c01 (diff)
update
-rw-r--r--init.el23
1 files changed, 20 insertions, 3 deletions
diff --git a/init.el b/init.el
index f33b271..01be640 100644
--- a/init.el
+++ b/init.el
@@ -21,7 +21,7 @@
;; [config] straight: use use-package by default
(use-package straight
:custom (straight-use-package-by-default t))
-
+9
;; [package] acme-mouse
(use-package acme-mouse)
@@ -75,13 +75,30 @@
(setq TeX-parse-self t)
(setq-default TeX-master nil))
+;; [package] modus-themes: cool theme
+;; XXX: included in emacs?
(use-package modus-themes
- :straight (modus-themes :type git :host nil
- :repo "https://gitlab.com/protesilaos/modus-themes.git")
:init
(modus-themes-load-themes)
(modus-themes-load-vivendi))
+
+;; [package] tmr: useful timers (finally, because I used to use my phone
+;; previously
+(use-package tmr
+ :straight (tmr :type git :host nil
+ :repo "https://git.sr.ht/~protesilaos/tmr"))
+
+;; [package] plz: (dep) ement
+(use-package plz
+ :straight (plz :type git :host nil
+ :repo "https://github.com/alphapapa/plz.el"))
+
+;; [package] ement: matrix client
+(use-package ement
+ :straight (ement :type git :host nil
+ :repo "https://github.com/alphapapa/ement.el"))
+
;; [config] display line numbers
(global-display-line-numbers-mode 1)