mirror of
https://github.com/fscotto/infra.git
synced 2026-09-27 19:03:47 +00:00
Make Emacs default font platform-aware (Linux/WSL) and drop Claude CLI agent files
This commit is contained in:
@@ -7,8 +7,15 @@
|
||||
:config
|
||||
(load-theme 'nordic-night t))
|
||||
|
||||
(set-frame-font "UbuntuSansMono Nerd Font 14" nil t)
|
||||
(add-to-list 'default-frame-alist '(font . "UbuntuSansMono Nerd Font-14"))
|
||||
(defconst fscotto/default-font
|
||||
(pcase system-type
|
||||
('gnu/linux "UbuntuSansMono Nerd Font 14")
|
||||
('windows-nt "JetBrainsMono NF 12")
|
||||
(_ "monospace 14"))
|
||||
"Default font for graphical Emacs frames on the current platform.")
|
||||
|
||||
(set-frame-font fscotto/default-font nil t)
|
||||
(add-to-list 'default-frame-alist `(font . ,fscotto/default-font))
|
||||
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
||||
|
||||
(tool-bar-mode -1)
|
||||
|
||||
Reference in New Issue
Block a user