summaryrefslogtreecommitdiff
path: root/.emacs.d/site-lisp
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/site-lisp')
-rw-r--r--.emacs.d/site-lisp/profile-dotemacs.el13
1 files changed, 10 insertions, 3 deletions
diff --git a/.emacs.d/site-lisp/profile-dotemacs.el b/.emacs.d/site-lisp/profile-dotemacs.el
index 9f8077ac..d7454e51 100644
--- a/.emacs.d/site-lisp/profile-dotemacs.el
+++ b/.emacs.d/site-lisp/profile-dotemacs.el
@@ -77,6 +77,10 @@
;; User variables
+(defgroup profile-dotemacs nil
+ "Customization of profile-dotemacs."
+ :group 'startup)
+
(defvar profile-dotemacs-file "~/.emacs.d/init.el"
"File to be profiled.")
@@ -88,17 +92,20 @@ grayed out.")
(defface profile-dotemacs-time-face
'((((background dark)) (:background "OrangeRed1"))
(t (:background "red3")))
- "Background color to indicate percentage of total time.")
+ "Background color to indicate percentage of total time."
+ :group 'profile-dotemacs)
(defface profile-dotemacs-low-percentage-face
'((((background dark)) (:foreground "gray25"))
(t (:foreground "gray75")))
- "Face for sexps below `profile-dotemacs-low-percentage'.")
+ "Face for sexps below `profile-dotemacs-low-percentage'."
+ :group 'profile-dotemacs)
(defface profile-dotemacs-highlight-face
'((((background dark)) (:background "blue"))
(t (:background "yellow")))
- "Highlight face for benchmark results.")
+ "Highlight face for benchmark results."
+ :group 'profile-dotemacs)
;; Main function