mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-24 11:09:56 +00:00
[emacs] Add mixed-pitch mode
This commit is contained in:
parent
22e1c9df08
commit
4c69476474
2 changed files with 8 additions and 0 deletions
|
@ -24,6 +24,13 @@ outside of a terminal session.
|
|||
(if (display-graphic-p)
|
||||
(global-unset-key (kbd "C-z")))
|
||||
#+end_src
|
||||
** Mixed Pitch
|
||||
Facilitates mixing monospace and proportional fonts.
|
||||
#+begin_src emacs-lisp
|
||||
(use-package! mixed-pitch
|
||||
:hook ((org-mode markdown-mode rst-mode) . mixed-pitch-mode))
|
||||
(setq doom-variable-pitch-font (font-spec :family "DejaVu Serif"))
|
||||
#+end_src
|
||||
* Dashboard
|
||||
#+begin_src emacs-lisp
|
||||
(defun my/choice (&rest things)
|
||||
|
|
|
@ -19,3 +19,4 @@
|
|||
(package! emms)
|
||||
(package! org-sticky-header)
|
||||
(package! kubernetes)
|
||||
(package! mixed-pitch)
|
||||
|
|
Loading…
Reference in a new issue