(custom-set-variables
 '(paren-mode (quote paren) nil (paren))
 '(font-lock-maximum-decoration t)
 '(next-line-add-newlines nil)
 '(singular-cursor-key-model (quote terminal))
 '(singular-help-same-window t)
 '(show-paren-mode t nil (paren))
 '(transient-mark-mode t)
 '(singular-section-face-alist (quote ((input . singular-section-input-face) (output)))))
(custom-set-faces
 '(font-lock-comment-face ((t (:bold nil :foreground "Red"))))
 '(show-paren-match-face ((((class color)) (:foreground "Red"))))
 '(font-lock-string-face ((((class color) (background light)) (:foreground "Blue")) (((class color) (background dark)) (:foreground "LightSkyBlue"))))
 '(paren-match ((t (:foreground "Red"))) t)
 '(singular-section-input-face ((t (:bold t))))
 '(font-lock-keyword-face ((t (:bold t :foreground "violet"))))
 '(singular-section-output-face ((t (:bold nil))))
 '(font-lock-type-face ((t (:bold t :foreground "violet"))))
  '(font-lock-function-name-face ((t (:bold t :foreground "blue3"))))
)
(add-hook 'c++-mode-hook 
  '(lambda() (c-toggle-auto-hungry-state 1)
             (define-key c-mode-map "\C-m" 'newline-and-indent)))
;; Make F2 be `undo'
(global-set-key [f2] 'undo)