mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-13 23:51:34 +09:00
16 lines
581 B
EmacsLisp
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
|