From 1e69666c39cb9cc3c21b0ac019bbe295860f1959 Mon Sep 17 00:00:00 2001 From: liv Date: Mon, 30 Sep 2024 18:57:49 +0200 Subject: [PATCH] doom: use catppuccin-theme --- doom_files/config.el | 7 ++++--- doom_files/packages.el | 2 ++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/doom_files/config.el b/doom_files/config.el index 37634f2..fca2340 100644 --- a/doom_files/config.el +++ b/doom_files/config.el @@ -21,7 +21,7 @@ ;; See 'C-h v doom-font' for documentation and more examples of what they ;; accept. For example: ;; -(setq doom-font (font-spec :family "RecMonoLinear Nerd Font" :size 18 :weight 'semi-light)) +(setq doom-font (font-spec :family "RecMonoLinear Nerd Font" :size 19 :weight 'semi-light)) ;; doom-variable-pitch-font (font-spec :family "Fira Sans" :size 13)) ;; ;; If you or Emacs can't find your font, use 'M-x describe-font' to look them @@ -32,7 +32,8 @@ ;; 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 catppuccin-flavor 'mocha) +(setq doom-theme 'catppuccin) ;; This determines the style of line numbers in effect. If set to `nil', line ;; numbers are disabled. For relative line numbers, set this to `relative'. @@ -40,7 +41,7 @@ ;; 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! -(setq org-directory "~/org/") +(setq org-directory "~/Documents/org/") ;; Whenever you reconfigure a package, make sure to wrap your config in an diff --git a/doom_files/packages.el b/doom_files/packages.el index 364e6e9..199c963 100644 --- a/doom_files/packages.el +++ b/doom_files/packages.el @@ -5,6 +5,8 @@ ;; on the command line, then restart Emacs for the changes to take effect -- or ;; use 'M-x doom/reload'. +;; Catppucin! +(package! catppuccin-theme) ;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror: ;; (package! some-package)