diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-03-02 17:39:39 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-03-02 17:39:39 -0600 |
commit | fa69f8c16babcacace449d41a7bf751a30e3cb24 (patch) | |
tree | 8680e1894b1299ca1f240ac1e2ba09337cd2c433 /common/.config/emacs | |
parent | d2a58937a4caf170d6aa936b90f1e38d4708e07d (diff) |
system changes
Diffstat (limited to 'common/.config/emacs')
-rw-r--r-- | common/.config/emacs/init.el.org | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org index 508fac2..d4f3d5a 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -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 |