JustPaste.it

#+BEGIN_SRC emacs-lisp :tangle user-config.el
  (add-hook 'text-mode-hook #'variable-pitch-mode)
#+END_SRC

#+RESULTS:
| variable-pitch-mode | (lambda nil (setq ispell-personal-dictionary ~/.ispell-dico-perso) (ispell-change-dictionary francais) (flyspell-mode 1)) |

#+BEGIN_SRC emacs-lisp :tangle user-config.el :results none
  (use-package face-remap
    :custom-face
    (org-table ((t (:inherit fixed-pitch))))
;;    (variable-pitch ((t (:family "Ubuntu"))))
    (fixed-pitch ((t (:family "Serif"))))
    (org-block ((t (:inherit fixed-pitch))))
    (italic ((t (:slant italic))))
    :hook
    (org-mode-hook . variable-pitch-mode))
#+END_SRC