;;; For packaged versions which must use `require'.
(use-package modus-themes
:ensure t
:config
;; ..
(..)
;; ..
(..)
;; Load the theme of your choice.
(load-theme 'modus-vivendi-tinted)
(..))
<tr> |
;;; For the built-in themes which cannot use `require'.
(use-package emacs
:config
(require-theme 'modus-themes) ; `require-theme' is ONLY for the built-in Modus themes
;; ..
(..)
;; ..
(..)
;; Load the theme of your choice.
(load-theme 'modus-operandi)
(..))
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; The same without ‘use-package’: ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(require 'modus-themes) ; OR for the built-in themes: (require-theme 'modus-themes)
;; ..
(..)
;; ..
(..)
;; Load the theme of your choice:
(load-theme 'modus-vivendi-deuteranopia :no-confirm)
(..)
(replace-regexp ";;.+" ";; ..")
(write-file "~soul/Uploads/codings/emacs/lisp/samples/3.2.html" t)
(exchange-point-and-mark)
(replace-regexp ";;.+" ";; ..")
(mmm-ify-region 'emacs-lisp-mode (region-beginning) (region-end))
(exchange-point-and-mark)
(replace-regexp ";;.+" ";; ..")
(comment-box (region-beginning) (region-end) 1)
(comment-box (region-beginning) (region-end) 1)
(mmm-ify-region 'emacs-lisp-mode (region-beginning) (region-end))
(sgml-namify-char)
(sgml-namify-char)
(exchange-point-and-mark)
(mmm-ify-region 'emacs-lisp-mode (region-beginning) (region-end))
(mark-sexp nil 1)
|