emacs: more fixes

This commit is contained in:
insects 2024-11-06 11:29:27 +01:00
parent 3c56ef7d04
commit 870c79dc38
2 changed files with 10 additions and 6 deletions

View file

@ -3,13 +3,15 @@
(setq user-full-name "liv" (setq user-full-name "liv"
user-mail-address "shadows@with.al") user-mail-address "shadows@with.al")
;; Set fonts and window sizes conditionally based on what machine Emacs is running on ;; Set fonts and window sizes
(when (string= (system-name) "enoko") (add-to-list 'default-frame-alist '(fullscreen . maximized))
(setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 25 :weight 'semi-light))
(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 ;; Load our cute color scheme
(setq catppuccin-flavor 'mocha) (setq catppuccin-flavor 'mocha)

View file

@ -30,5 +30,7 @@
imagemagick imagemagick
zstd zstd
editorconfig-core-c editorconfig-core-c
# for vterm
libtool
]; ];
} }