system changes

This commit is contained in:
jjanzen 2025-03-26 13:48:31 -05:00
parent 3ebfc100aa
commit 9a7609c296
2 changed files with 3 additions and 5 deletions

View file

@ -29,7 +29,7 @@ Clean up interface by removing unnecessary elements.
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 "Atkinson Hyperlegible Mono-14:weight=thin")
(defvar jj/var-font "CMU Serif-18")
(defvar jj/var-font "Atkinson Hyperlegible Next-14")
(add-to-list 'default-frame-alist
`(font . ,jj/mono-font))
(custom-set-faces

View file

@ -135,15 +135,13 @@ Install and configure =visual-fill-column= to make some file types display with
(defun jj/run-visual-line-mode ()
"run visual-line-mode"
(visual-line-mode)
(visual-fill-column-mode)
(setq visual-fill-column-width 100
visual-fill-column-center-text t))
(visual-fill-column-mode))
(use-package visual-fill-column
:hook
(org-mode . jj/run-visual-line-mode)
(markdown-mode . jj/run-visual-line-mode)
:config
(setq visual-fill-column-width 100
(setq-default visual-fill-column-width 150
visual-fill-column-center-text t))
#+end_src