summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCrazazy2022-01-31 14:34:21 +0100
committerCrazazy2022-02-10 16:13:34 +0100
commitfd9b49cbf0873528d2a8637e0f18ce056062336e (patch)
treedc0fe4133abd0746b6454ae073bd805e287febee
parent5d2f0668a29e4b543c5053d777fb9f77f4618c4e (diff)
add a theme and elcord
-rw-r--r--emacs.org15
1 files changed, 15 insertions, 0 deletions
diff --git a/emacs.org b/emacs.org
index 663018a..bf5f799 100644
--- 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