aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2023-03-07 06:54:11 -0800
committercolin <colin@cicadas.surf>2023-03-07 06:54:11 -0800
commit7ca2ccb6da50feb7f193f839064087570af6e0e3 (patch)
tree9d9b8145703429c7c361cddfde650acf1fc0feef
parentaecf5abe905459bd6c83b7abb0f42f83e66c4e97 (diff)
added themes, crdt config
-rw-r--r--init-el.org37
1 files changed, 27 insertions, 10 deletions
diff --git a/init-el.org b/init-el.org
index 1bc34ba..69e60d4 100644
--- a/init-el.org
+++ b/init-el.org
@@ -23,7 +23,6 @@
-
(setq custom-file (concat user-emacs-directory "custom.el"))
(load custom-file 'noerror)
@@ -209,7 +208,8 @@ New in emacs 28, native compilation can be enabled:
(?j "[j]ournal" toggle-journal)
(?s "[s]ecrets" toggle-secrets)
(?p "[p]omodoro" pomidor)
- (?w "[w]eb browser (eww)" eww)))
+ (?w "[w]eb browser (eww)" eww)
+ (?C "[C]RDT" my-crdt-commands)))
#+end_src
@@ -600,9 +600,8 @@ New in emacs 28, native compilation can be enabled:
(setq my-installed-themes
'(zerodark-theme
zenburn-theme
- starlit-theme
+ tao-theme
yoshi-theme
- spacegray-theme
solo-jazz-theme
stimmung-themes
uwu-theme
@@ -621,19 +620,20 @@ New in emacs 28, native compilation can be enabled:
(setq *my-themes*
'(stimmung-themes-light
- solo-jazz
modus-operandi
+ tao-yang
+ solo-jazz
leuven
dichromacy
zenburn
- spacegray
zerodark
- sweet
+ yoshi
shanty-themes-dark
+ sweet
uwu
- starlit
- yoshi
- modus-vivendi))
+ tao-yin
+ modus-vivendi
+ stimmung-themes-dark))
(load-theme 'dichromacy t)
@@ -868,7 +868,24 @@ stand up and move around.
#+end_src
* Communication
+#+name: communications-config
+#+begin_src elisp :noweb no-export :results none
+<<crdt-config>>
+#+end_src
+
+** CRDT
+#+name: crdt-config
+#+begin_src elisp :noweb no-export :results none
+(def-my-command my-crdt-commands
+ '((?s "[s]hare this buffer" crdt-share-buffer)
+ (?f "[f]ollow a user" crdt-follow-user)
+ (?u "[u]nfollow a user" crdt-stop-follow)
+ (?C "[C]lose connection" crdt-disconnect)
+ (?c "[c]onnect" crdt-connect)
+ (?l "[l]ist buffers" crdt-list-buffers)))
+
+#+end_src
* Reading, Notes, and Writing
#+name: reading-notes-and-writing-config