system changes
This commit is contained in:
parent
3ebfc100aa
commit
9a7609c296
2 changed files with 3 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue