added variables that control the enabling/disabling of guru and whitespace-mode

This commit is contained in:
Bozhidar Batsov 2012-12-09 00:41:09 +02:00
parent a9253bc967
commit ad37ec6ad6

View file

@ -33,15 +33,26 @@
;;; Code: ;;; Code:
;; customize ;; customize
(defgroup editor nil (defgroup prelude nil
"Emacs Prelude Editor enhancements" "Emacs Prelude configuration."
:group 'prelude) :prefix "prelude-"
:group "convenience")
(defcustom prelude-auto-save t (defcustom prelude-auto-save t
"Non-nil values enable Prelude's auto save." "Non-nil values enable Prelude's auto save."
:type 'boolean :type 'boolean
:group 'prelude) :group 'prelude)
(defcustom prelude-guru t
"Non-nil values enable guru-mode"
:type 'boolean
:group 'prelude)
(defcustom prelude-whitespace nil
"Non-nil values enable Prelude's whitespace visualisation."
:type 'boolean
:group 'prelude)
;; Death to the tabs! However, tabs historically indent to the next ;; Death to the tabs! However, tabs historically indent to the next
;; 8-character offset; specifying anything else will cause *mass* ;; 8-character offset; specifying anything else will cause *mass*
;; confusion, as it will change the appearance of every existing file. ;; confusion, as it will change the appearance of every existing file.