1
0
Fork 0
vdotfiles/doom/config.org
Von Random 4fefa2f242 meh
2023-01-06 20:01:56 +02:00

24 lines
575 B
Org Mode

#+title: von's Doom Emacs config
#+author: Von Random
#+options: toc:2
* User name and email
#+begin_src emacs-lisp
(setq user-full-name "Von Random"
user-mail-address "von@mechanus.net")
#+end_src
* Aesthetics
Font and theme
#+begin_src emacs-lisp
(setq doom-font (font-spec :family "JetBrainsMono Nerd Font" :size 14)
doom-variable-pitch-font (font-spec :family "PT Sans"))
(setq doom-theme 'doom-gruvbox)
#+end_src
* Other settings
#+begin_src emacs-lisp
(setq display-line-numbers-type 'relative)
(setq org-directory "~/org/")
(menu-bar-mode -1)
#+end_src