diff options
-rwxr-xr-x | emacs.org | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -2,6 +2,7 @@ #+PROPERTY: header-args :tangle ~/.emacs.d/init.el :mkdirp yes #+auto_tangle: t #+STARTUP: overview + * System information Check the ~$HOSTNAME~ to set a variable for different devices #+begin_src emacs-lisp @@ -1047,6 +1048,19 @@ Create function to watch videos using ~mpv~ (define-key thanos/eshell-map (kbd "o") 'multi-eshell) (define-key thanos/eshell-map (kbd "n") 'multi-eshell-switch) #+end_src +* Circe +#+begin_src emacs-lisp + (setq circe-network-options + `(("Libera Chat" + :tls t + :nick "thanosapollo" + :sasl-username "thanosapollo" + :sasl-password ,(password-store-get "liberachat/thanos_apollo") + :channels ("#emacs-circe" + "#emacs")))) + + (define-key thanos/applications-map "i" 'circe) +#+end_src * Misc ** Random functions #+begin_src emacs-lisp @@ -1209,3 +1223,4 @@ Create function to watch videos using ~mpv~ (define-key thanos/vterm-map (kbd "d") 'multi-vterm-dedicated-open) (define-key thanos/vterm-map (kbd "o") 'multi-vterm) #+end_src + |