From 6cbf86f391f8a9cb088c4d0e57ca0f99099253e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Tue, 20 Apr 2021 10:20:08 +0200 Subject: [PATCH] added basic config --- .config/doom/config.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.config/doom/config.el b/.config/doom/config.el index 7560003..a1a5d0e 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -6,8 +6,8 @@ ;; Some functionality uses this to identify you, e.g. GPG configuration, email ;; clients, file templates and snippets. -(setq user-full-name "John Doe" - user-mail-address "john@doe.com") +(setq user-full-name "Moritz Böhme" + user-mail-address "mail@moritzboeh.me") ;; Doom exposes five (optional) variables for controlling fonts in Doom. Here ;; are the three important ones: @@ -25,7 +25,7 @@ ;; There are two ways to load a theme. Both assume the theme is installed and ;; available. You can either set `doom-theme' or manually load a theme with the ;; `load-theme' function. This is the default: -(setq doom-theme 'doom-one) +(setq doom-theme 'doom-dracula) ;; If you use `org' and don't want your org files in the default location below, ;; change `org-directory'. It must be set before org loads! @@ -52,3 +52,4 @@ ;; ;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how ;; they are implemented. +(setq doom-font (font-spec :family "FiraCode Nerd Font Mono" :size 13) )