From b6f736b70b0e60f69d367ba30ae465a596f8dd91 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Fri, 22 Jan 2021 18:05:58 +0530 Subject: [PATCH] emacs: Use doom-vibrant theme We use srcery color scheme in terminal as well and using the same in emacs, makes titles and comments unreadable when opening in terminal with emacsclient. So use a different color theme. --- emacs/.config/doom/config.el | 4 ++-- emacs/.config/doom/packages.el | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/emacs/.config/doom/config.el b/emacs/.config/doom/config.el index 7f836b9..208382b 100644 --- a/emacs/.config/doom/config.el +++ b/emacs/.config/doom/config.el @@ -19,12 +19,12 @@ ;; ;; They all accept either a font-spec, font string ("Input Mono-12"), or xlfd ;; font string. You generally only need these two: -(setq doom-font (font-spec :family "JetBrainsMono Nerd Font" :size 18)) +(setq doom-font (font-spec :family "JetBrainsMono Nerd Font" :size 20)) ;; 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 'srcery) +(setq doom-theme 'doom-vibrant) ;; 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! diff --git a/emacs/.config/doom/packages.el b/emacs/.config/doom/packages.el index 91baff1..194d28a 100644 --- a/emacs/.config/doom/packages.el +++ b/emacs/.config/doom/packages.el @@ -49,5 +49,4 @@ ;; ...Or *all* packages (NOT RECOMMENDED; will likely break things) ;(unpin! t) -(package! srcery-theme) (package! rfc-mode)