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