diff --git a/doom_files/config.el b/doom_files/config.el index 96eea0a..8f68d90 100644 --- a/doom_files/config.el +++ b/doom_files/config.el @@ -3,13 +3,15 @@ (setq user-full-name "liv" user-mail-address "shadows@with.al") -;; Set fonts and window sizes conditionally based on what machine Emacs is running on -(when (string= (system-name) "enoko") - (setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 25 :weight 'semi-light)) - (add-to-list 'default-frame-alist '(fullscreen . maximized))) +;; Set fonts and window sizes +(add-to-list 'default-frame-alist '(fullscreen . maximized)) + +(if (string= (system-name) "enoko") + (setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 25 :weight 'semi-light)) + (setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 17 :weight 'semi-light))) + + -(when (string= (system-name) "yukari") - (setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 19 :weight 'semi-light))) ;; Load our cute color scheme (setq catppuccin-flavor 'mocha) diff --git a/home/features/desktop/emacs.nix b/home/features/desktop/emacs.nix index c9c5553..4b2042d 100644 --- a/home/features/desktop/emacs.nix +++ b/home/features/desktop/emacs.nix @@ -30,5 +30,7 @@ imagemagick zstd editorconfig-core-c + # for vterm + libtool ]; }