system changes

This commit is contained in:
jjanzen 2025-03-02 17:39:39 -06:00
parent d2a58937a4
commit fa69f8c16b
2 changed files with 21 additions and 21 deletions

View file

@ -1,6 +1,6 @@
#+title: Emacs Configuration
* Early Setup
* Package Setup
Bootstrap package management. I use =elpaca= with =use-package= to allow asynchronous declarative package management.
#+begin_src emacs-lisp
(defvar elpaca-installer-version 0.10)
@ -52,24 +52,6 @@ Bootstrap package management. I use =elpaca= with =use-package= to allow asynchr
* Appearance
Set up fonts. I use Source Code Pro (Nerd Font) for =monospace= and Computer Modern for /variable width/.
#+begin_src emacs-lisp
(defvar jj/mono-font)
(defvar jj/var-font)
(pcase system-type
(`gnu/linux
(setq jj/mono-font "SauceCodePro Nerd Font-11"
jj/var-font "CMU Serif-14"))
(`darwin
(setq jj/mono-font "SauceCodePro Nerd Font-14:weight=thin"
jj/var-font "CMU Serif-18")))
(add-to-list 'default-frame-alist
`(font . ,jj/mono-font))
(custom-set-faces
`(variable-pitch ((t :font ,jj/var-font)))
`(fixed-pitch ((t :font ,jj/mono-font))))
#+end_src
Use =diredfl= for a colourful =dired= and =ns-auto-titlebar= for a macOS native title-bar look.
#+begin_src emacs-lisp
(use-package diredfl

View file

@ -20,8 +20,26 @@ Disable the default startup screen so Emacs starts in the =scratch= buffer and a
Clean up interface by removing unnecessary elements.
#+begin_src emacs-lisp
(add-to-list 'default-frame-alist '(vertical-scroll-bars . nil)) ; saves about 0.02 seconds on startup over `(scroll-bar-mode -1)`
(push '(tool-bar-lines . 0) default-frame-alist) ; saves about 0.1 seconds on startup over `(tool-bar-mode -1)`
(add-to-list 'default-frame-alist '(vertical-scroll-bars . nil))
(push '(tool-bar-lines . 0) default-frame-alist)
(menu-bar-mode -1)
(setq frame-resize-pixelwise t)
#+end_src
Set up fonts. I use Source Code Pro (Nerd Font) for =monospace= and Computer Modern for /variable width/.
#+begin_src emacs-lisp
(defvar jj/mono-font)
(defvar jj/var-font)
(pcase system-type
(`gnu/linux
(setq jj/mono-font "SauceCodePro Nerd Font-11"
jj/var-font "CMU Serif-14"))
(`darwin
(setq jj/mono-font "SauceCodePro Nerd Font-14:weight=thin"
jj/var-font "CMU Serif-18")))
(add-to-list 'default-frame-alist
`(font . ,jj/mono-font))
(custom-set-faces
`(variable-pitch ((t :font ,jj/var-font)))
`(fixed-pitch ((t :font ,jj/mono-font))))
#+end_src