dotfiles/.config/emacs/lisp/init-custom.el
2023-05-21 20:30:03 +09:00

16 lines
581 B
EmacsLisp

;; init-custom.el -*- lexical-binding: t -*-
(customize-set-variable 'large-file-warning-threshold 100000000) ;; 100MB
(with-no-warnings
(custom-declare-face
'+org-todo-active '((t (:inherit (bold font-lock-constant-face org-todo)))) "")
(custom-declare-face
'+org-todo-project '((t (:inherit (bold font-lock-doc-face org-todo)))) "")
(custom-declare-face
'+org-todo-onhold '((t (:inherit (bold warning org-todo)))) "")
(custom-declare-face
'+org-todo-cancel '((t (:inherit (bold error org-todo)))) ""))
(provide 'init-custom)
;;; init-custom.el ends here