literate-config

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit fd9b49cbf0873528d2a8637e0f18ce056062336e
parent 5d2f0668a29e4b543c5053d777fb9f77f4618c4e
Author: Crazazy <crazazy@tilde.cafe>
Date:   Mon, 31 Jan 2022 14:34:21 +0100

add a theme and elcord

Diffstat:
Memacs.org | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/emacs.org b/emacs.org @@ -308,3 +308,18 @@ Also, if you just stumbled accross this at random, there is an easy tangle butto (emmet-expand-line prefix) (evil-jump-forward prefix)))) #+end_src +** Other, less useful stuff +*** Themes + I like to have a nice theme in my setup + #+begin_src emacs-lisp :tangle misc.el + (use-package flatland-theme + :config + (load-theme 'flatland)) + #+end_src +*** Discord + My discord buddies /have/ to know I'm using emacs whenever I have my computer running + #+begin_src emacs-lisp :tangle misc.el + (use-package elcord + :config + (elcord-mode)) + #+end_src