]> gitweb @ CieloNegro.org - sugar.git/blob - dot-files/_emacs_el
Auto commit by The Sugar System.
[sugar.git] / dot-files / _emacs_el
1 ;; -*- Mode: emacs-lisp; Coding: utf-8 -*-
2
3 ;; Load paths -----------------------------------------------------------------
4 (add-to-list 'load-path (expand-file-name "~/.elisp"))
5 (add-to-list 'load-path "/usr/local/share/emacs/site-lisp")
6
7 ;; Setting for encodings of the environment -----------------------------------
8 ;(set-language-environment 'Japanese)
9 (set-default-coding-systems 'utf-8)
10 (set-terminal-coding-system 'utf-8)
11 (setq default-file-name-coding-system 'utf-8)
12 (set-keyboard-coding-system 'utf-8)
13 (set-clipboard-coding-system 'utf-8)
14
15 ;; Settings for the Emacs itself ----------------------------------------------
16 (setq truncate-partial-width-windows t)
17 (setq make-backup-files nil)
18
19 (setq read-file-name-completion-ignore-case t)
20 (tool-bar-mode nil)
21
22 (global-set-key (kbd "C-\\" ) 'toggle-input-method)
23 (global-set-key (kbd "C-RET") 'completion-at-point)
24
25 (unless window-system
26   (normal-erase-is-backspace-mode t))
27
28 (setq-default tab-width 4)
29 (global-font-lock-mode t)
30
31 (auto-compression-mode t)
32 (which-function-mode t)
33 (setq visible-bell t)
34 (setq ring-bell-function (lambda ()))
35
36 (require 'server)
37 (if (server-running-p)
38     (message "Warning: server %S is already running." server-name)
39   (server-start))
40
41 ;; windmove
42 (windmove-default-keybindings)
43
44 ;; Host specific configuration ------------------------------------------------
45 (let ((host (system-name)))
46   (cond ((equal host "aria.cielonegro.org")
47          (progn
48            ;; Use firefox as the default browser.
49            (setq browse-url-firefox-program "/opt/local/bin/firefox")
50            ;; Specify how to connect to some of the remote servers.
51            (setq tramp-default-proxies-alist nil)
52            (mapcar #'(lambda (proxy)
53                        (add-to-list 'tramp-default-proxies-alist proxy))
54             '( ("rd8"                                 nil "/sshx:pho@yebisu1.ymir.jp:")
55                ("pho\\.dev\\.office\\.ymir\\.co\\.jp" nil "/sshx:pho@yebisu1.ymir.jp:")
56                ("yebisu1\\.ymir\\.jp"                 nil "/sshx:pho@boss:"           )
57                ))))))
58
59 ;; Settings for Browser --------------------------------------------------------
60 (setq browse-url-browser-function 'w3m-browse-url)
61 (global-set-key "\C-xm" 'browse-url-at-point)
62
63 ;; Setting for the Mode Line ---------------------------------------------------
64 (line-number-mode t)
65 (column-number-mode t)
66 (display-time)
67
68 ;; Setting for Frames ----------------------------------------------------------
69 (when window-system
70   (if (equal (system-name) "seras")
71       (set-default-font "Dejavu Sans Mono 11")
72     (set-default-font "Dejavu Sans Mono 13")))
73
74 ;(when window-system
75 ;  (set-default-font "Inconsolata-14")
76 ;  (set-face-font 'variable-pitch "Inconsolata-14")
77 ;  (set-fontset-font (frame-parameter nil 'font)
78 ;                    'japanese-jisx0208
79 ;                    '("Takaoゴシック" . "unicode-bmp")))
80
81 ;(when window-system
82 ;  (add-to-list 'default-frame-alist
83 ;               '(font . "Bitstream Vera Sans Mono 12"))
84 ;  (set-frame-font "Bitstream Vera Sans Mono 12")
85 ;  (set-fontset-font nil;(frame-parameter nil 'font)
86 ;                    'japanese-jisx0208
87 ;                    '("Hiragino Kaku Gothic Pro W3" . "unicode-bmp")))
88
89 ;; Hooks for newline-and-indent ------------------------------------------------
90 ;(mapcar (lambda (hook)
91 ;     (add-hook hook
92 ;           (lambda ()
93 ;             (local-set-key "\C-m" 'newline-and-indent)
94 ;             (local-set-key "\C-j" 'newline)
95 ;             )))
96 ;   '(perl-mode-hook
97 ;     cperl-mode-hook
98 ;     java-mode-hook
99 ;     javascript-mode-hook
100 ;     c-mode-hook
101 ;     c++-mode-hook
102 ;     objc-mode-hook
103 ;     emacs-lisp-mode-hook
104 ;     lisp-mode-hook
105 ;     yatex-mode-hook
106 ;     css-mode-hook
107 ;     scheme-mode-hook))
108
109 ;; Setting for Packages --------------------------------------------------------
110 (defun require-if-present (feature)
111   (condition-case e
112       (require feature)
113     (file-error
114      (if (equal (cadr e) "Cannot open load file")
115          (message "Warning: feature %s is absent" feature) ; warn and ignore
116        (apply 'signal (car e) (cdr e)))))) ; rethrow
117
118 (defun load-if-present (file)
119   (condition-case e
120       (load file)
121     (file-error
122      (if (equal (cadr e) "Cannot open load file")
123          (message "Warning: file named %s is absent" file) ; warn and ignore
124        (apply 'signal (car e) (cdr e)))))) ; rethrow
125
126 (defun load-file-if-present (path)
127   (if (file-exists-p path)
128       (load-file path)
129     (message "Warning: file %s is absent" path)))
130
131 ;; session
132 (require-if-present 'session)
133
134 ;; flyspell
135 (require-if-present 'flyspell)
136
137 ;; ditz
138 (require-if-present 'ditz)
139
140 ;; mediawiki
141 (require-if-present 'mediawiki)
142
143 ;; jaspace
144 (require-if-present 'jaspace)
145
146 ;; color-theme
147 (require-if-present 'color-theme)
148 (if (featurep 'color-theme)
149     (progn
150       (color-theme-initialize)
151       (color-theme-subtle-hacker)))
152
153 ;; auto-complete
154 (require-if-present 'auto-complete-config)
155 (if (featurep 'auto-complete-config)
156     (progn
157       (add-to-list 'ac-dictionary-directories
158                    "/usr/pkg/share/emacs/site-lisp/auto-complete/ac-dict")
159       (mapcar (lambda (mode)
160                 (add-to-list 'ac-modes mode))
161               '(autoconf-mode
162                 erlang-mode
163                 sql-mode))
164       (setq ac-modes (remove 'css-mode ac-modes))
165       (add-hook 'erlang-mode-hook
166                 (lambda ()
167                   (add-to-list 'ac-sources 'ac-source-semantic)))
168       (ac-config-default)))
169
170 ;; mic-paren
171 (require-if-present 'mic-paren)
172 (if (featurep 'mic-paren)
173     (paren-activate))
174
175 ;; elscreen
176 (load "elscreen" "ElScreen" t)
177 (elscreen-start)
178 (require-if-present 'elscreen-w3m)
179
180 ;; undo-tree
181 (require-if-present 'undo-tree)
182 (if (featurep 'undo-tree)
183         (global-undo-tree-mode))
184
185 ;; MPC
186 ;(require-if-present 'mpc-autoloads)
187
188 ;; rst-mode
189 (autoload 'rst-mode "rst"
190   "mode for editing reStructuredText documents" t)
191 (setq auto-mode-alist
192       (append '(("\\.rst$" . rst-mode)
193                 ("\\.rest$" . rst-mode)) auto-mode-alist))
194
195 ;; textile-mode
196 (autoload 'textile-mode "textile-mode"
197   "Major mode for editing Textile documents." t)
198 (add-to-list 'auto-mode-alist '("\\.textile\\'" . textile-mode))
199
200 ;; xsltxt-mode
201 (autoload 'xsltxt-mode "xsltxt-mode" "Major mode for xsltxt." t)
202 (add-to-list 'auto-mode-alist '("\\.xsltxt$" . xsltxt-mode))
203
204 ;; lua-mode
205 (autoload 'lua-mode "lua-mode" "Lua editing mode." t)
206 (add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode))
207
208 ;; twittering-mode
209 (require-if-present 'twittering-mode)
210 (setq twittering-username "phonohawk")
211
212 ;; riece
213 (autoload 'riece "riece" "Start Riece" t)
214 (add-hook 'riece-after-load-startup-hook
215                   #'(lambda ()
216                           (add-to-list 'riece-addons 'riece-alias)
217                           (add-to-list 'riece-addons 'riece-skk-kakutei)
218                           (add-to-list 'riece-addons 'riece-keyword)
219                           (add-to-list 'riece-addons 'riece-ctlseq)))
220
221 ;; CEDET
222 (add-to-list 'load-path "/usr/pkg/share/emacs/cedet/common")
223 (require-if-present 'cedet)
224
225 ;; ECB
226 (require-if-present 'ecb-autoloads)
227 (let* ((hosts '(("netbsd." .
228                  (("~/sandbox/yxmimeproc" "yxmimeproc")
229                   ("~/sandbox/YxMIME" "YxMIME.pm")
230                   ))
231                 ("g1.cuenote.jp" .
232                  (("~/sandbox/MR/engine/libycom" "libycom")
233                   ))
234                 ("aria.cielonegro.org" .
235                  (("~/sandbox/_web-app/Rakka"           "Rakka")
236                   ("~/sandbox/_haskell/Lucu"            "Lucu")
237                   ("~/sandbox/_web-app/Kirschbaum"      "Kirschbaum")
238                   ("~/sandbox/_haskell/HsOpenSSL"       "HsOpenSSL")
239                   ("~/sandbox/_haskell/HsHyperEstraier" "HsHyperEstraier")
240                   ("~/sandbox/_haskell/HsSVN"           "HsSVN")
241                   ("~/sandbox/_game/RoRo"               "RoRo")
242                   ("~/sandbox/_haskell/HXT"             "HXT")
243                   ("~/sandbox/_haskell/hxt-compile"     "hxt-compile")
244                   ("~/src/ghc-6.10.1"                   "ghc-6.10.1")
245                   ("~/sandbox/sugar"                    "sugar")
246                   ("~/sandbox/_haskell/dns"             "dns")
247                   ("~/sandbox/_haskell/blackboard-ddns" "blackboard-ddns")
248                   ))))
249        (paths (cdr (assoc (system-name) hosts))))
250   (setq ecb-source-path paths))
251
252 ;; leim
253 (require-if-present 'gaelic)
254
255 ;; rnc-mode
256 (autoload 'rnc-mode "rnc-mode")
257 (add-to-list 'auto-mode-alist '("\\.rnc\\'" . rnc-mode))
258
259 ;; bookmark
260 (setq bookmark-sort-flag nil)
261
262 ;; sudoku
263 (autoload 'sudoku "sudoku" "The Sudoku" t)
264
265 ;; mew
266 (autoload 'mew "mew" "Mew" t)
267
268 ;; cleite
269 (autoload 'cleite "cleite" "Cleite RSS Aggregator -- Emacs Interface" t)
270
271 ;; javascript
272 (autoload 'js2-mode "js2" nil t)
273 (add-to-list 'auto-mode-alist '("\\.js$" . js2-mode))
274 (add-to-list 'auto-mode-alist '("\\.json$" . javascript-mode))
275
276 ;; vimrc
277 (autoload 'vimrc-mode "vimrc-mode"
278   "Major mode for editing `.vimrc', `xxx.vim' and `.exrc' files." t)
279 (add-to-list 'auto-mode-alist '("\\.vim\\(rc\\)?$" . vimrc-mode))
280
281 ;; ido
282 (require 'ido)
283 (ido-mode t)
284
285 ;; sokoban
286 (autoload 'sokoban "sokoban.el" "Start a new game of Sokoban." t)
287 (autoload 'sokoban-mode "sokoban.el" "Play Sokoban in current buffer." t)
288 (setq sokoban-playerfiles-dir "/usr/local/var/games/emacs-sokoban")
289
290 ;; nXML
291 (load-file-if-present "/usr/pkg/share/emacs/site-lisp/nxml-mode/rng-auto.el")
292 (defalias 'xml-mode 'nxml-mode)
293 (add-to-list 'auto-mode-alist '("\\.xml$" . nxml-mode))
294 (add-to-list 'auto-mode-alist '("\\.xi$" . nxml-mode))
295 (add-to-list 'auto-mode-alist '("\\.rdf$" . nxml-mode))
296 (add-to-list 'auto-mode-alist '("\\.rng$" . nxml-mode))
297
298 ;; sstp
299 (autoload 'sstp-mode "sstp" "SSTP Editing Major-Mode" t)
300
301 ;; ruby-mode
302 (autoload 'ruby-mode "ruby-mode" "Mode for editing ruby source files")
303 (setq auto-mode-alist
304       (append '(("\\.rb$" . ruby-mode)) auto-mode-alist))
305 (setq interpreter-mode-alist (append '(("ruby" .ruby-mode))
306                                      interpreter-mode-alist))
307 (autoload 'run-ruby "inf-ruby" "Run an inferior Ruby process")
308 (autoload 'inf-ruby-keys "inf-ruby" "set local key defs for inf-ruby in ruby-mode")
309 (add-hook 'ruby-mode-hook
310           '(lambda ()
311             (inf-ruby-keys)
312           ))
313
314 ;; Haskell
315 (load-if-present "haskell-site-file.el")
316
317 (autoload 'run-haskell "inf-haskell" "" t)
318 (autoload 'switch-to-haskell "inf-haskell" "" t)
319 (autoload 'inferior-haskell-load-file "inf-haskell" "" t)
320 (autoload 'inferior-haskell-type "inf-haskell" "" t)
321 (autoload 'inferior-haskell-info "inf-haskell" "" t)
322 (autoload 'inferior-haskell-find-definition "inf-haskell" "" t)
323 (autoload 'inferior-haskell-find-haddock "inf-haskell" "" t)
324
325 (add-to-list 'auto-mode-alist '("\\.hs$" . haskell-mode))
326 (add-to-list 'auto-mode-alist '("\\.hsc$" . haskell-mode))
327
328 (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
329 (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
330 (add-hook 'haskell-mode-hook 'turn-on-haskell-ghci)
331
332 (load-if-present "~/sandbox/_input-method/haskell-unicode-input-method/haskell-unicode-input-method")
333  (add-hook 'haskell-mode-hook
334    (lambda () (set-input-method "haskell-unicode")))
335
336 ;; Hoogle
337 (autoload 'hoogle-lookup "hoogle" "Hoogle" t)
338 (global-set-key (kbd "C-c h") 'hoogle-lookup)
339
340 ;; c-mode
341 (mapcar (lambda (hook)
342       (add-hook hook
343             (lambda () (c-set-style "user"))))
344     '(c-mode-hook
345       c++-mode-hook
346       objc-mode-hook
347       java-mode-hook))
348
349 ;; EmacsWiki
350 (autoload 'emacs-wiki-find-file "emacs-wiki" "Emacs Wiki" t)
351 (defalias 'wiki 'emacs-wiki-find-file)
352
353 ;; cperl
354 (defalias 'perl-mode 'cperl-mode)
355 (setq cperl-indent-level 4)
356 (setq cperl-indent-parens-as-block t)
357
358 ;; Erlang
359 (require-if-present 'erlang-start)
360 (setq erlang-electric-commands nil)
361
362 ;; SKK
363 (require 'skk-autoloads)
364 (require 'skk-study)
365 (global-set-key "\C-x\C-j" 'skk-mode)
366 (global-set-key "\C-xj" 'skk-auto-fill-mode)
367 (global-set-key "\C-xt" 'skk-tutorial)
368 (setq skk-use-jisx0201-input-method t)
369 (setq skk-rom-kana-rule-list
370       '(("@" nil "@")
371         ("wi" nil ("ヰ" . "ゐ"))
372         ("we" nil ("ヱ" . "ゑ"))
373         ;;("hh" "h" ("ン" . "ん"))
374         ;;("mm" "m" ("ン" . "ん"))
375         ("zx" nil ("ゝ" . "ヽ"))
376         ("zc" nil ("ゞ" . "ヾ"))))
377 (set-input-method 'japanese-skk) ; INPUT METHOD
378
379 ;; navi2ch
380 (autoload 'navi2ch "navi2ch" "Navigator for 2ch for Emacs" t)
381
382 ;; migemo
383 (require-if-present 'migemo)
384 (setq migemo-isearch-enable-p nil)
385
386 ;; tiarra-conf
387 (setq load-path (cons (expand-file-name "~/sandbox/Tiarra") load-path))
388 (autoload 'tiarra-conf-mode "tiarra-conf" "tiarra.conf editing mode" t)
389
390 ;; po-mode
391 (autoload 'po-mode "po-mode")
392 (setq auto-mode-alist
393       (cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode)
394         auto-mode-alist))
395
396 ;; csv-mode
397 (autoload 'csv-mode "csv-mode"
398   "Major mode for editing comma-separated value files." t)
399 (add-to-list 'auto-mode-alist '("\\.[Cc][Ss][Vv]\\'" . csv-mode))
400
401 ;; yaml-mode
402 (autoload 'yaml-mode "yaml-mode"
403   "Major mode for editing YAML files." t)
404 (add-to-list 'auto-mode-alist '("\\.ya?ml$"  . yaml-mode))
405
406 ;; Troublesome Tasks
407 (if (equal (system-name) "seras")
408     (progn
409       (defun edit-troublesome-tasks ()
410         (interactive)
411         (elscreen-create)
412         (find-file (expand-file-name "~/var/troublesome-tasks.txt")))
413       (define-key ctl-x-map "MT" #'edit-troublesome-tasks)))
414
415 ;; ChangeLog
416 (setq user-full-name "PHO")
417 (setq user-mail-address "pho@cielonegro.org")
418
419 (defun memo ()
420   (interactive)
421   (add-change-log-entry nil (expand-file-name "~/sync/memo.txt")))
422 (define-key ctl-x-map "MM" #'memo)
423
424 (defun depression ()
425   (interactive)
426   (add-change-log-entry nil (expand-file-name "~/sync/depression.txt")))
427 (define-key ctl-x-map "MD" #'depression)
428
429 (defun plant ()
430   (interactive)
431   (add-change-log-entry nil (expand-file-name "~/sync/plant.txt")))
432 (define-key ctl-x-map "MP" #'plant)
433
434 (defun robinson ()
435   (interactive)
436   (elscreen-create)
437   (find-file (expand-file-name "~/sync/good-things.txt"))
438   (split-window-horizontally)
439   (next-window)
440   (find-file (expand-file-name "~/sync/bad-things.txt"))
441   (next-window))
442 (define-key ctl-x-map "MR" #'robinson)
443
444 ;; Emacs Calc
445 (add-hook 'calc-start-hook
446           (lambda ()
447             (if (functionp 'paren-deactivate)
448                 (paren-deactivate))))
449 (add-hook 'calc-end-hook
450           (lambda ()
451             (if (functionp 'paren-activate)
452                 (paren-activate))))
453
454 ;;; emacs-w3m
455 (autoload 'w3m "w3m" "Interface for w3m on Emacs." t)
456 (autoload 'w3m-browse-url "w3m" "Browse url by w3m." t)
457 (autoload 'w3m-find-file "w3m" "w3m interface function for local file." t)
458 (autoload 'w3m-search "w3m-search" "Search QUERY using SEARCH-ENGINE." t)
459 (autoload 'w3m-weather "w3m-weather" "Display weather report." t)
460 (autoload 'w3m-antenna "w3m-antenna" "Report chenge of WEB sites." t)
461 (autoload 'w3m-namazu "w3m-namazu" "Search files with Namazu." t)
462
463 ;; pov-mode
464 (autoload 'pov-mode "pov-mode" "POV-Ray scene file mode" t)
465 (setq auto-mode-alist
466       (append '(("\\.pov$" . pov-mode)
467                 ("\\.inc$" . pov-mode)
468                 ) auto-mode-alist))
469
470 ;; End of user configuration ---------------------------------------------------
471
472 ;; emacs auto edit
473 (put 'narrow-to-region 'disabled nil)
474 (custom-set-variables
475  ;; custom-set-variables was added by Custom.
476  ;; If you edit it by hand, you could mess it up, so be careful.
477  ;; Your init file should contain only one such instance.
478  ;; If there is more than one, they won't work right.
479  '(Info-additional-directory-list (quote ("/sw/share/info" "/usr/local/info" "/usr/local/share/info")))
480  '(ac-ignore-case nil)
481  '(appt-display-format (quote window))
482  '(appt-message-warning-time 20)
483  '(canlock-password "a14fa4d2601465d55585c291fa8b3943e189e716")
484  '(cleite:auto-refresh-interval nil)
485  '(cleite:measure-srpc-call-time t)
486  '(compilation-scroll-output (quote first-error))
487  '(completion-ignored-extensions (quote (".svn/" "CVS/" ".o" "~" ".bin" ".lbin" ".so" ".a" ".ln" ".blg" ".bbl" ".elc" ".lof" ".glo" ".idx" ".lot" ".dvi" ".fmt" ".tfm" ".pdf" ".class" ".fas" ".lib" ".mem" ".x86f" ".sparcf" ".fasl" ".ufsl" ".fsl" ".dxl" ".pfsl" ".dfsl" ".lo" ".la" ".gmo" ".mo" ".toc" ".aux" ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs" ".pyc" ".pyo" ".hi")))
488  '(cperl-merge-trailing-else nil)
489  '(csv-align-style (quote auto))
490  '(default-frame-alist (quote ((tool-bar-lines . 0) (menu-bar-lines . 1) (width . 80) (height . 25) (right-fringe) (left-fringe))))
491  '(ditz-find-issue-directory-automatically-flag t)
492  '(ecb-add-path-for-not-matching-files (quote (t)))
493  '(ecb-help-info-path "/sw/share/info/ecb.info")
494  '(ecb-layout-name "left14")
495  '(ecb-options-version "2.32")
496  '(ecb-show-sources-in-directories-buffer (quote always))
497  '(ecb-tip-of-the-day nil)
498  '(ecb-tree-buffer-style (quote ascii-guides))
499  '(ecb-windows-width 0.2)
500  '(elscreen-display-tab t)
501  '(haskell-program-name "ghci")
502  '(ido-enable-flex-matching t)
503  '(ido-everywhere t)
504  '(ido-ignore-files (quote ("\\`CVS/" "\\`#" "\\`.#" "\\`\\.\\./" "\\`\\./" "\\.ttc")))
505  '(ido-work-directory-list-ignore-regexps (quote ("^\\(/mnt/ibm/\\|/Volumes/IBM80GB/\\)")))
506  '(indent-tabs-mode nil)
507  '(jabber-nickname "PHO")
508  '(jabber-resource "emacs")
509  '(jabber-server "jabber.jp")
510  '(jabber-username "phonohawk")
511  '(jaspace-highlight-tabs t)
512  '(js2-auto-indent-flag nil)
513  '(js2-basic-offset 4)
514  '(js2-indent-on-enter-key nil)
515  '(js2-mirror-mode nil)
516  '(js2-use-font-lock-faces t)
517  '(mediawiki-site-alist (quote (("Wikipedia" "http://en.wikipedia.org/w/" "username" "password" "Main Page") ("YmirDev" "https://ymirlink:santamo@update.forcast.jp/fcdiv/mwiki/" "PHO" "" "メインページ"))))
518  '(mew-field-spec (quote (("^Resent-\\(From\\|To\\|Cc\\|Date\\)" t mew-face-header-important mew-face-header-important) ("^Subject:$" t mew-face-header-important mew-face-header-subject) ("^From:$" t mew-face-header-important mew-face-header-from) ("^\\(To\\|Apparently-To\\):$" t mew-face-header-important mew-face-header-to) ("^\\(Cc\\|Dcc\\|Bcc\\):$" t mew-face-header-important mew-face-header-to) ("^Newsgroups:$" t mew-face-header-important mew-face-header-to) ("^Date:$" t mew-face-header-important mew-face-header-date) ("^Reply-To:$" t) ("^X-Mailer:$" t) ("^X-Mew:$" t mew-face-header-important mew-face-header-xmew) ("^\\(Received\\|Return-Path\\|Sender\\|Errors-To\\):$" nil) ("^\\(Path\\|Distribution\\|Xref\\):$" nil) ("^NNTP-Posting-" nil) ("^\\(Message-Id\\|Posted\\|In-Reply-To\\|References\\|Precedence\\):$" nil) ("^Delivered-" nil) ("^List-" nil) ("^\\(Mime-Version\\|Lines\\):$" nil) ("^From$" nil) ("^Status:$" nil) ("^Face:$" nil mew-face-header-private mew-face-header-marginal) ("^X-Text-Classification:$" t mew-face-header-important mew-face-header-important) ("^X-POPFile-Link:$" t mew-face-header-important mew-face-body-url) ("^\\(X\\|Original\\)-" nil mew-face-header-private mew-face-header-marginal))))
519  '(mew-refile-guess-alist (quote (("From:" ("noreply@adc1.apple.com" "+mm/adc") ("mag2 ID 0000022139" "+mm/2ch") ("noreply@sourceforge.net" "+from/sf-net")) ("Subject:" ("w3m-dev" "+ml/w3m-dev")) ("To:" ("glasgow-haskell-users@haskell.org" "+ml/ghc-users") ("fink-devel@lists.sourceforge.net" "+ml/fink-devel")) ("Reply-To:" ("yun@kokonoe.com" "+mm/kokonoe")) ("Cc:" ("glasgow-haskell-users@haskell.org" "+ml/ghc-users")))))
520  '(mew-scan-fields (quote ("Folder:" "Filename:" "Subject:" "Date:" "From:" "To:" "Cc:" "Content-Type:" "Content-Transfer-Encoding:" "X-Mew-Uidl:" "Message-Id:" "In-Reply-To:" "References:" "X-Mew-Ref:" "X-Text-Classification:" "Body")))
521  '(mew-spam: "X-Text-Classification:")
522  '(mew-summary-form (quote (type (5 date) " " (14 from) " " t (14 x-classification) " " (30 subj) "|" (0 body))))
523  '(mouse-wheel-progessive-speed nil)
524  '(mouse-wheel-scroll-amount (quote (1 ((shift) . 5) ((control)))))
525  '(navi2ch-browse-url-browser-function (quote browse-url-firefox))
526  '(navi2ch-display-splash-screen nil)
527  '(navi2ch-list-moved-board-alist (quote (("http://mamono.2ch.net/ihou/" . "http://hideyoshi.2ch.net/ihou/"))))
528  '(navi2ch-mona-face-variable (quote navi2ch-mona12-face))
529  '(navi2ch-mona-on-message-mode t)
530  '(newsticker-html-renderer (quote w3m-region))
531  '(newsticker-url-list nil)
532  '(newsticker-url-list-defaults (quote (("slashdot" "http://slashdot.org/index.rss" nil 3600))))
533  '(nxml-auto-insert-xml-declaration-flag t)
534  '(nxml-slash-auto-complete-flag t)
535  '(org-replace-disputed-keys t)
536  '(rcirc-server-alist (quote (("irc1.ymir.jp" :nick "PHO`cons" nil nil))))
537  '(riece-layout "default")
538  '(riece-layout-alist (quote (("middle-right" riece-configure-windows right middle) ("middle-left" riece-configure-windows left middle) ("top-right" riece-configure-windows right top) ("top-left" riece-configure-windows left top) ("bottom-right" riece-configure-windows right bottom) ("bottom-left" riece-configure-windows left bottom) ("top" riece-configure-windows-top) ("spiral" riece-configure-windows-spiral) ("default" . "middle-right"))))
539  '(riece-others-buffer-mode nil)
540  '(rng-schema-locating-files (quote ("schemas.xml" "~/share/nxml/schemas.xml" "/usr/pkg/share/emacs/site-lisp/nxml-mode/schema/schemas.xml")))
541  '(rst-level-face-base-light 50)
542  '(safe-local-variable-values (quote ((todo-categories "Todo" "Todo" "Todo" "Todo"))))
543  '(session-use-package t nil (session))
544  '(tramp-auto-save-directory "/tmp/tramp-auto-save")
545  '(tramp-completion-reread-directory-timeout 2)
546  '(tramp-default-host "localhost")
547  '(tramp-default-method "sshx")
548  '(uniquify-buffer-name-style (quote forward) nil (uniquify))
549  '(uniquify-trailing-separator-p t)
550  '(w3m-bookmark-file-coding-system (quote utf-8))
551  '(w3m-coding-system (quote utf-8))
552  '(w3m-coding-system-priority-list (quote (utf-8)))
553  '(w3m-default-coding-system (quote utf-8))
554  '(w3m-default-display-inline-images t)
555  '(w3m-file-coding-system (quote utf-8))
556  '(w3m-file-name-coding-system (quote utf-8))
557  '(w3m-fill-column 80)
558  '(w3m-input-coding-system (quote utf-8))
559  '(w3m-key-binding nil)
560  '(w3m-output-coding-system (quote utf-8))
561  '(w3m-terminal-coding-system (quote utf-8))
562  '(w3m-use-cookies t)
563  '(whitespace-style (quote (face tabs trailing lines-tail space-before-tab newline indentation empty space-after-tab tab-mark)))
564  '(woman-cache-filename "~/.wmncach.el")
565  '(x-select-enable-clipboard t))
566 (custom-set-faces
567  ;; custom-set-faces was added by Custom.
568  ;; If you edit it by hand, you could mess it up, so be careful.
569  ;; Your init file should contain only one such instance.
570  ;; If there is more than one, they won't work right.
571  '(diff-added ((t (:inherit diff-changed :foreground "medium spring green" :weight extra-bold))))
572  '(diff-removed ((t (:foreground "gold3" :weight extra-bold))))
573  '(flyspell-incorrect ((t (:foreground "OrangeRed" :overline t))))
574  '(jaspace-highlight-tab-face ((((class color) (background dark)) (:foreground "gray70" :underline t))))
575  '(navi2ch-bm-new-unread-face ((t (:foreground "PaleGreen" :weight bold))))
576  '(navi2ch-bm-updated-cache-face ((t (:foreground "CornflowerBlue" :weight bold))))
577  '(navi2ch-bm-updated-unread-face ((t (:foreground "DarkSeaGreen3" :weight bold))))
578  '(which-func-face ((t (:background "black" :foreground "dark orange"))))
579  '(whitespace-indentation ((t (:foreground "dimgray" :underline t))))
580  '(whitespace-line ((t (:background "gray20")))))