forked from walter/aquamacs-emacs-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
customizations.el.walter
33 lines (32 loc) · 2.04 KB
/
customizations.el.walter
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(aquamacs-additional-fontsets nil t)
'(aquamacs-customization-version-id 144 t)
'(erc-autojoin-channels-alist (quote (("your_irc_host" "#your_preferred_irc_channel"))))
'(erc-away-nickname "your_away_name")
'(erc-current-nick-highlight-type (quote keyword))
'(erc-match-mode t)
'(erc-modules (quote (autojoin button completion fill irccontrols match menu netsplit noncommands readonly ring stamp track)))
'(erc-server "your_irc_host")
'(erc-sound-mode t)
'(erc-text-matched-hook (quote (erc-log-matches erc-beep-on-match)))
'(erc-user-full-name "Your Full Name")
'(one-buffer-one-frame-mode nil nil (aquamacs-frame-setup))
'(text-mode-hook (quote (turn-on-flyspell (lambda nil (auto-fill-mode)) auto-detect-longlines)))
'(transient-mark-mode t)
'(cc-other-file-alist (quote (("\\.cc\\'" (".hh" ".h")) ("\\.hh\\'" (".cc" ".C")) ("\\.m\\'" (".h")) ("\\.c\\'" (".h")) ("\\.h\\'" (".c" ".cc" ".C" ".CC" ".cxx" ".cpp" ".m")) ("\\.C\\'" (".H" ".hh" ".h")) ("\\.H\\'" (".C" ".CC")) ("\\.CC\\'" (".HH" ".H" ".hh" ".h")) ("\\.HH\\'" (".CC")) ("\\.c\\+\\+\\'" (".h++" ".hh" ".h")) ("\\.h\\+\\+\\'" (".c++")) ("\\.cpp\\'" (".hpp" ".hh" ".h")) ("\\.hpp\\'" (".cpp")) ("\\.cxx\\'" (".hxx" ".hh" ".h")) ("\\.hxx\\'" (".cxx")))))
'(javascript-indent-level 2)
'(twitter-password "your_twitter_password")
'(twitter-username "your_twitter_username"))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(twitter-header-face ((t (:background "dark blue" :foreground "green")))))
;; for compatibility with older Aquamacs versions
(defvar aquamacs-140-custom-file-upgraded t)
(unless (fboundp 'auto-detect-longlines) (defun auto-detect-longlines () t))