1 ;; -*- Mode: emacs-lisp; Coding: utf-8 -*-
3 ;; Added by Package.el. This must come before configurations of
4 ;; installed packages. Don't delete this line. If you don't want it,
5 ;; just comment it out by adding a semicolon to the start of the line.
6 ;; You may delete these explanatory comments.
9 ;; Load paths -----------------------------------------------------------------
10 (add-to-list 'load-path (expand-file-name "~/.elisp"))
11 (add-to-list 'load-path "/usr/local/share/emacs/site-lisp")
13 ;; Setting for encodings of the environment -----------------------------------
14 (set-locale-environment "en_US.UTF-8")
15 (set-default-coding-systems 'utf-8)
16 (set-terminal-coding-system 'utf-8)
17 (setq default-file-name-coding-system 'utf-8)
18 (set-keyboard-coding-system 'utf-8)
19 (set-clipboard-coding-system 'utf-8)
21 ;; Settings for the Emacs itself ----------------------------------------------
22 (setq truncate-partial-width-windows t)
23 (setq make-backup-files nil)
25 (setq read-file-name-completion-ignore-case t)
28 (global-set-key (kbd "C-\\" ) 'toggle-input-method)
29 (global-set-key (kbd "C-RET") 'completion-at-point)
30 (global-set-key (kbd "C-<return>") 'completion-at-point)
33 (normal-erase-is-backspace-mode t))
35 (setq-default tab-width 4)
36 (global-font-lock-mode t)
38 (auto-compression-mode t)
39 (which-function-mode t)
41 (setq ring-bell-function (lambda ()))
44 (if (server-running-p)
45 (message "Warning: server %S is already running." server-name)
49 (windmove-default-keybindings)
52 ;; Originally from stevey, adapted to support moving to a new directory.
53 (defun rename-file-and-buffer (new-name)
54 "Renames both current buffer and file it's visiting to NEW-NAME."
57 (if (not (buffer-file-name))
58 (error "Buffer '%s' is not visiting a file!" (buffer-name)))
59 ;; Disable ido auto merge since it too frequently jumps back to the original
60 ;; file name if you pause while typing. Reenable with C-z C-z in the prompt.
61 (let ((ido-auto-merge-work-directories-length -1))
62 (list (read-file-name (format "Rename %s to: " (file-name-nondirectory
63 (buffer-file-name))))))))
64 (if (equal new-name "")
65 (error "Aborted rename"))
66 (setq new-name (if (file-directory-p new-name)
67 (expand-file-name (file-name-nondirectory
70 (expand-file-name new-name)))
71 ;; Only rename if the file was saved before. Update the
72 ;; buffer name and visited file in all cases.
73 (if (file-exists-p (buffer-file-name))
74 (rename-file (buffer-file-name) new-name 1))
75 (let ((was-modified (buffer-modified-p)))
76 ;; This also renames the buffer, and works with uniquify
77 (set-visited-file-name new-name)
80 ;; Clear buffer-modified flag caused by set-visited-file-name
81 (set-buffer-modified-p nil)))
83 (setq default-directory (file-name-directory new-name))
85 (message "Renamed to %s." new-name))
87 ;; Host specific configuration ------------------------------------------------
88 (let ((host (system-name)))
89 (cond ((equal host "aria.cielonegro.org")
91 ;; Use firefox as the default browser.
92 (setq browse-url-firefox-program "/usr/pkg/bin/firefox")
93 ;; Specify how to connect to some of the remote servers.
94 (setq tramp-default-proxies-alist nil)
95 (mapcar #'(lambda (proxy)
96 (add-to-list 'tramp-default-proxies-alist proxy))
97 '( ("rd8" nil "/sshx:pho@seras.vpn.cielonegro.org:")
98 ("pho\\.dev\\.office\\.ymir\\.co\\.jp" nil "/sshx:pho@seras.vpn.cielonegro.org:")
101 ;; Settings for Browser --------------------------------------------------------
102 (global-set-key "\C-xm" 'browse-url-at-point)
104 ;; Setting for the Mode Line ---------------------------------------------------
106 (column-number-mode t)
109 ;; Setting for Frames ----------------------------------------------------------
111 (let ((host (system-name)))
112 (cond ((equal host "seras")
113 (set-frame-font "Dejavu Sans Mono 11" t))
115 ((equal host "yukari.cielonegro.org")
116 (set-frame-font "Dejavu Sans Mono 11" t))
118 ((equal host "aria.cielonegro.org")
120 (set-frame-font "Dejavu Sans Mono 13" t)
121 ;; Emacs 24.4.1 somehow gets very slow when the following
122 ;; lines are uncommented.
123 ;;(set-fontset-font nil 'japanese-jisx0208 "さざなみゴシック")
124 ;;(set-fontset-font nil 'japanese-jisx0212 "さざなみゴシック")
125 ;;(set-fontset-font nil 'katakana-jisx0201 "さざなみゴシック")
128 ;; Setting for Packages --------------------------------------------------------
129 (defun require-if-present (feature)
133 (if (equal (cadr e) "Cannot open load file")
134 (message "Warning: feature %s is absent" feature) ; warn and ignore
135 (apply 'signal (car e) (cdr e)))))) ; rethrow
137 (defun load-if-present (file)
141 (if (equal (cadr e) "Cannot open load file")
142 (message "Warning: file named %s is absent" file) ; warn and ignore
143 (apply 'signal (car e) (cdr e)))))) ; rethrow
145 (defun load-file-if-present (path)
146 (if (file-exists-p path)
148 (message "Warning: file %s is absent" path)))
151 (autoload 'cmake-mode "cmake-mode" nil t)
152 (add-to-list 'auto-mode-alist '("CMakeLists\\.txt\\'" . cmake-mode))
153 (add-to-list 'auto-mode-alist '("\\.cmake\\'" . cmake-mode))
156 (require-if-present 'ditz)
159 (require-if-present 'flyspell)
162 (require-if-present 'jaspace)
165 (autoload 'glsl-mode "glsl-mode" nil t)
166 (add-to-list 'auto-mode-alist '("\\.glsl\\'" . glsl-mode))
167 (add-to-list 'auto-mode-alist '("\\.vert\\'" . glsl-mode))
168 (add-to-list 'auto-mode-alist '("\\.frag\\'" . glsl-mode))
169 (add-to-list 'auto-mode-alist '("\\.geom\\'" . glsl-mode))
172 (autoload 'rust-mode "rust-mode" nil t)
173 (add-to-list 'auto-mode-alist '("\\.rs\\'" . rust-mode))
176 (require-if-present 'session)
177 (if (featurep 'session)
178 (session-initialize))
181 (require-if-present 'mediawiki)
184 (require-if-present 'midnight)
187 (require-if-present 'color-theme)
188 (if (featurep 'color-theme)
190 (color-theme-initialize)
191 (color-theme-subtle-hacker)))
194 (autoload 'multi-term "multi-term"
195 "Create new term buffer.
196 Will prompt you shell name when you type `C-u' before this command." t)
199 (require-if-present 'auto-complete-config)
200 (if (featurep 'auto-complete-config)
202 (add-to-list 'ac-dictionary-directories
203 "/usr/pkg/share/emacs/site-lisp/auto-complete/ac-dict")
204 (mapcar (lambda (mode)
205 (add-to-list 'ac-modes mode))
209 (setq ac-modes (remove 'css-mode ac-modes))
210 (add-hook 'erlang-mode-hook
212 (add-to-list 'ac-sources 'ac-source-semantic)))
213 (ac-config-default)))
216 (require-if-present 'mic-paren)
217 (if (featurep 'mic-paren)
222 (load "elscreen" "ElScreen" t)
224 (if (equal (cadr e) "Cannot open load file")
225 (message "Warning: feature %s is absent" feature) ; warn and ignore
226 (apply 'signal (car e) (cdr e))))) ; rethrow
227 (if (featurep 'elscreen)
229 (require-if-present 'elscreen-w3m)
232 (require-if-present 'undo-tree)
233 (if (featurep 'undo-tree)
234 (global-undo-tree-mode))
237 ;(require-if-present 'mpc-autoloads)
240 (autoload 'rst-mode "rst"
241 "mode for editing reStructuredText documents" t)
242 (setq auto-mode-alist
243 (append '(("\\.rst$" . rst-mode)
244 ("\\.rest$" . rst-mode)) auto-mode-alist))
247 (autoload 'graphviz-dot-mode "graphviz-dot-mode"
248 "Major mode for the dot language." t)
249 (add-to-list 'auto-mode-alist '("\\.dot\\'" . graphviz-dot-mode))
250 (add-to-list 'auto-mode-alist '("\\.gv\\'" . graphviz-dot-mode))
253 (autoload 'textile-mode "textile-mode"
254 "Major mode for editing Textile documents." t)
255 (add-to-list 'auto-mode-alist '("\\.textile\\'" . textile-mode))
258 (autoload 'xsltxt-mode "xsltxt-mode" "Major mode for xsltxt." t)
259 (add-to-list 'auto-mode-alist '("\\.xsltxt$" . xsltxt-mode))
262 (autoload 'lua-mode "lua-mode" "Lua editing mode." t)
263 (add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode))
266 (autoload 'protobuf-mode "protobuf-mode")
267 (add-to-list 'auto-mode-alist '("\\.proto\\'" . protobuf-mode))
270 (add-to-list 'load-path "~/sandbox/_scala/scala-mode2")
271 (require-if-present 'scala-mode2)
274 (add-to-list 'load-path "~/sandbox/_scala/sbt-mode")
275 (require-if-present 'sbt-mode)
278 (require-if-present 'twittering-mode)
279 (setq twittering-username "phonohawk")
282 (autoload 'riece "riece" "Start Riece" t)
283 (add-hook 'riece-after-load-startup-hook
285 (add-to-list 'riece-addons 'riece-alias)
286 (add-to-list 'riece-addons 'riece-skk-kakutei)
287 (add-to-list 'riece-addons 'riece-keyword)
288 (add-to-list 'riece-addons 'riece-ctlseq)))
291 (add-to-list 'load-path "/usr/pkg/share/emacs/cedet/common")
292 (require-if-present 'cedet)
295 (require-if-present 'ecb-autoloads)
296 (let* ((hosts '(("netbsd." .
297 (("~/sandbox/yxmimeproc" "yxmimeproc")
298 ("~/sandbox/YxMIME" "YxMIME.pm")
301 (("~/sandbox/MR/engine/libycom" "libycom")
303 ("aria.cielonegro.org" .
304 (("~/sandbox/_web-app/Rakka" "Rakka")
305 ("~/sandbox/_haskell/Lucu" "Lucu")
306 ("~/sandbox/_web-app/Kirschbaum" "Kirschbaum")
307 ("~/sandbox/_haskell/HsOpenSSL" "HsOpenSSL")
308 ("~/sandbox/_haskell/HsHyperEstraier" "HsHyperEstraier")
309 ("~/sandbox/_haskell/HsSVN" "HsSVN")
310 ("~/sandbox/_game/RoRo" "RoRo")
311 ("~/sandbox/_haskell/HXT" "HXT")
312 ("~/sandbox/_haskell/hxt-compile" "hxt-compile")
313 ("~/src/ghc-6.10.1" "ghc-6.10.1")
314 ("~/sandbox/sugar" "sugar")
315 ("~/sandbox/_haskell/dns" "dns")
316 ("~/sandbox/_haskell/blackboard-ddns" "blackboard-ddns")
318 (paths (cdr (assoc (system-name) hosts))))
319 (setq ecb-source-path paths))
322 (require-if-present 'gaelic)
325 (autoload 'rnc-mode "rnc-mode")
326 (add-to-list 'auto-mode-alist '("\\.rnc\\'" . rnc-mode))
329 (setq bookmark-sort-flag nil)
332 (autoload 'sudoku "sudoku" "The Sudoku" t)
335 (autoload 'mew "mew" "Mew" t)
338 (autoload 'cleite "cleite" "Cleite RSS Aggregator -- Emacs Interface" t)
341 (add-to-list 'auto-mode-alist '("\\.js$" . javascript-mode))
342 (add-to-list 'auto-mode-alist '("\\.json$" . javascript-mode))
345 (autoload 'typescript-mode "typescript-mode"
346 "Major mode for editing typescript." t)
347 (add-to-list 'auto-mode-alist '("\\.ts$" . typescript-mode))
350 (autoload 'vimrc-mode "vimrc-mode"
351 "Major mode for editing `.vimrc', `xxx.vim' and `.exrc' files." t)
352 (add-to-list 'auto-mode-alist '("\\.vim\\(rc\\)?$" . vimrc-mode))
359 (autoload 'sokoban "sokoban.el" "Start a new game of Sokoban." t)
360 (autoload 'sokoban-mode "sokoban.el" "Play Sokoban in current buffer." t)
361 (setq sokoban-playerfiles-dir "/usr/local/var/games/emacs-sokoban")
364 (load-file-if-present "/usr/pkg/share/emacs/site-lisp/nxml-mode/rng-auto.el")
365 (defalias 'xml-mode 'nxml-mode)
366 (add-to-list 'auto-mode-alist '("\\.xml$" . nxml-mode))
367 (add-to-list 'auto-mode-alist '("\\.xi$" . nxml-mode))
368 (add-to-list 'auto-mode-alist '("\\.rdf$" . nxml-mode))
369 (add-to-list 'auto-mode-alist '("\\.rng$" . nxml-mode))
372 (autoload 'sstp-mode "sstp" "SSTP Editing Major-Mode" t)
375 (autoload 'ruby-mode "ruby-mode" "Mode for editing ruby source files")
376 (setq auto-mode-alist
377 (append '(("\\.rb$" . ruby-mode)) auto-mode-alist))
378 (setq interpreter-mode-alist (append '(("ruby" .ruby-mode))
379 interpreter-mode-alist))
380 (autoload 'run-ruby "inf-ruby" "Run an inferior Ruby process")
381 (autoload 'inf-ruby-keys "inf-ruby" "set local key defs for inf-ruby in ruby-mode")
382 (add-hook 'ruby-mode-hook
388 (autoload 'haskell-mode "haskell-mode"
389 "Major mode for editing Haskell scripts." t)
390 (autoload 'literate-haskell-mode "haskell-mode"
391 "Major mode for editing literate Haskell scripts." t)
393 (autoload 'run-haskell "inf-haskell" "" t)
394 (autoload 'switch-to-haskell "inf-haskell" "" t)
395 (autoload 'inferior-haskell-load-file "inf-haskell" "" t)
396 (autoload 'inferior-haskell-type "inf-haskell" "" t)
397 (autoload 'inferior-haskell-info "inf-haskell" "" t)
398 (autoload 'inferior-haskell-find-definition "inf-haskell" "" t)
399 (autoload 'inferior-haskell-find-haddock "inf-haskell" "" t)
401 (add-to-list 'auto-mode-alist '("\\.hs$" . haskell-mode))
402 (add-to-list 'auto-mode-alist '("\\.hsc$" . haskell-mode))
404 (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
405 (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
406 (add-hook 'haskell-mode-hook 'turn-on-haskell-ghci)
408 (load-if-present "~/sandbox/_input-method/haskell-unicode-input-method/haskell-unicode-input-method")
409 (add-hook 'haskell-mode-hook
410 (lambda () (set-input-method "haskell-unicode")))
413 (autoload 'hoogle-lookup "hoogle" "Hoogle" t)
414 (global-set-key (kbd "C-c h") 'hoogle-lookup)
417 (mapcar (lambda (hook)
419 (lambda () (c-set-style "user"))))
426 (autoload 'emacs-wiki-find-file "emacs-wiki" "Emacs Wiki" t)
427 (defalias 'wiki 'emacs-wiki-find-file)
430 (defalias 'perl-mode 'cperl-mode)
431 (setq cperl-indent-level 4)
432 (setq cperl-indent-parens-as-block t)
435 (require-if-present 'erlang-start)
436 (setq erlang-electric-commands nil)
439 (require-if-present 'skk-autoloads)
440 (if (featurep 'skk-autoloads)
442 (require-if-present 'skk-study)
443 (global-set-key "\C-x\C-j" 'skk-mode)
444 (global-set-key "\C-xj" 'skk-auto-fill-mode)
445 (global-set-key "\C-xt" 'skk-tutorial)
446 (setq skk-use-jisx0201-input-method t)
447 (setq skk-rom-kana-rule-list
449 ("wi" nil ("ヰ" . "ゐ"))
450 ("we" nil ("ヱ" . "ゑ"))
451 ;;("hh" "h" ("ン" . "ん"))
452 ;;("mm" "m" ("ン" . "ん"))
453 ("zx" nil ("ゝ" . "ヽ"))
454 ("zc" nil ("ゞ" . "ヾ"))))
455 (set-input-method 'japanese-skk))) ; INPUT METHOD
458 (autoload 'navi2ch "navi2ch" "Navigator for 2ch for Emacs" t)
461 (require-if-present 'migemo)
462 (setq migemo-isearch-enable-p nil)
465 (setq load-path (cons (expand-file-name "~/sandbox/Tiarra") load-path))
466 (autoload 'tiarra-conf-mode "tiarra-conf" "tiarra.conf editing mode" t)
469 (autoload 'po-mode "po-mode")
470 (setq auto-mode-alist
471 (cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode)
475 (autoload 'csv-mode "csv-mode"
476 "Major mode for editing comma-separated value files." t)
477 (add-to-list 'auto-mode-alist '("\\.[Cc][Ss][Vv]\\'" . csv-mode))
480 (autoload 'tsv-mode "tsv-mode" "A mode to edit table like file" t)
481 (autoload 'tsv-normal-mode "tsv-mode" "A minor mode to edit table like file" t)
482 (setq tsv-write-annotation nil)
483 (setq tsv-separator-list '("\t"))
484 ;(add-to-list 'auto-mode-alist '("\\.[Tt][Ss][Vv]\\'" . tsv-mode))
487 ;; http://jblevins.org/projects/markdown-mode/
488 (autoload 'markdown-mode "markdown-mode.el" "Major mode for editing Markdown files" t)
489 (add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
492 (autoload 'yaml-mode "yaml-mode"
493 "Major mode for editing YAML files." t)
494 (add-to-list 'auto-mode-alist '("\\.ya?ml$" . yaml-mode))
497 (autoload 'less-css-mode "less-css-mode" "Major mode for editing LESS files" t)
498 (add-to-list 'auto-mode-alist '("\\.less\\'" . less-css-mode))
501 (if (equal (system-name) "seras")
503 (defun edit-troublesome-tasks ()
506 (find-file (expand-file-name "~/var/troublesome-tasks.txt")))
507 (define-key ctl-x-map "MT" #'edit-troublesome-tasks)))
510 (setq user-full-name "PHO")
511 (setq user-mail-address "pho@cielonegro.org")
515 (add-change-log-entry nil (expand-file-name "~/sync/memo.txt")))
516 (define-key ctl-x-map "MM" #'memo)
520 (add-change-log-entry nil (expand-file-name "~/sync/depression.txt")))
521 (define-key ctl-x-map "MD" #'depression)
525 (add-change-log-entry nil (expand-file-name "~/sync/plant.txt")))
526 (define-key ctl-x-map "MP" #'plant)
531 (find-file (expand-file-name "~/sync/good-things.txt"))
532 (split-window-horizontally)
534 (find-file (expand-file-name "~/sync/bad-things.txt"))
536 (define-key ctl-x-map "MR" #'robinson)
539 (add-hook 'calc-start-hook
541 (if (functionp 'paren-deactivate)
542 (paren-deactivate))))
543 (add-hook 'calc-end-hook
545 (if (functionp 'paren-activate)
549 (autoload 'w3m "w3m" "Interface for w3m on Emacs." t)
550 (autoload 'w3m-browse-url "w3m" "Browse url by w3m." t)
551 (autoload 'w3m-find-file "w3m" "w3m interface function for local file." t)
552 (autoload 'w3m-search "w3m-search" "Search QUERY using SEARCH-ENGINE." t)
553 (autoload 'w3m-weather "w3m-weather" "Display weather report." t)
554 (autoload 'w3m-antenna "w3m-antenna" "Report chenge of WEB sites." t)
555 (autoload 'w3m-namazu "w3m-namazu" "Search files with Namazu." t)
558 (autoload 'pov-mode "pov-mode" "POV-Ray scene file mode" t)
559 (setq auto-mode-alist
560 (append '(("\\.pov$" . pov-mode)
561 ("\\.inc$" . pov-mode)
564 ;; End of user configuration ---------------------------------------------------
567 (put 'narrow-to-region 'disabled nil)
568 (custom-set-variables
569 ;; custom-set-variables was added by Custom.
570 ;; If you edit it by hand, you could mess it up, so be careful.
571 ;; Your init file should contain only one such instance.
572 ;; If there is more than one, they won't work right.
573 '(Info-additional-directory-list
575 ("/sw/share/info" "/usr/local/info" "/usr/local/share/info")))
576 '(ac-ignore-case nil)
577 '(appt-display-format (quote window))
578 '(appt-message-warning-time 20)
579 '(browse-url-browser-function (quote browse-url-firefox))
580 '(canlock-password "a14fa4d2601465d55585c291fa8b3943e189e716")
581 '(clean-buffer-list-delay-general 7)
582 '(cleite:auto-refresh-interval nil)
583 '(cleite:measure-srpc-call-time t)
584 '(compilation-scroll-output (quote first-error))
585 '(completion-ignored-extensions
587 (".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")))
588 '(cperl-merge-trailing-else nil)
589 '(csv-align-style (quote auto))
590 '(default-frame-alist
592 ((tool-bar-lines . 0)
598 '(ditz-find-issue-directory-automatically-flag t)
599 '(ecb-add-path-for-not-matching-files (quote (t)))
600 '(ecb-help-info-path "/sw/share/info/ecb.info")
601 '(ecb-layout-name "left14")
602 '(ecb-options-version "2.32")
603 '(ecb-show-sources-in-directories-buffer (quote always))
604 '(ecb-tip-of-the-day nil)
605 '(ecb-tree-buffer-style (quote ascii-guides))
606 '(ecb-windows-width 0.2)
607 '(electric-indent-mode nil)
608 '(elscreen-display-tab t)
609 '(global-whitespace-mode t)
610 '(graphviz-dot-auto-indent-on-newline nil)
611 '(graphviz-dot-auto-indent-on-semi nil)
612 '(haskell-program-name "ghci")
613 '(ido-enable-flex-matching t)
617 ("\\`CVS/" "\\`#" "\\`.#" "\\`\\.\\./" "\\`\\./" "\\.ttc")))
618 '(ido-work-directory-list-ignore-regexps (quote ("^\\(/mnt/ibm/\\|/Volumes/IBM80GB/\\)")))
619 '(indent-tabs-mode nil)
620 '(ispell-dictionary "english")
621 '(jabber-nickname "PHO")
622 '(jabber-resource "emacs")
623 '(jabber-server "jabber.jp")
624 '(jabber-username "phonohawk")
625 '(js2-auto-indent-flag nil)
626 '(js2-basic-offset 4)
627 '(js2-indent-on-enter-key nil)
628 '(js2-mirror-mode nil)
629 '(js2-use-font-lock-faces t)
630 '(lua-indent-level 4)
631 '(makefile-mode-hook (quote ((lambda nil (set-variable (quote tab-width) 8)))))
632 '(markdown-live-preview-delete-export (quote delete-on-export))
633 '(mediawiki-site-alist
635 (("Wikipedia" "http://en.wikipedia.org/w/" "username" "password" "Main Page")
636 ("YmirDev" "https://ymirlink:santamo@update.forcast.jp/fcdiv/mwiki/" "PHO" "" "メインページ"))))
639 (("^Resent-\\(From\\|To\\|Cc\\|Date\\)" t mew-face-header-important mew-face-header-important)
640 ("^Subject:$" t mew-face-header-important mew-face-header-subject)
641 ("^From:$" t mew-face-header-important mew-face-header-from)
642 ("^\\(To\\|Apparently-To\\):$" t mew-face-header-important mew-face-header-to)
643 ("^\\(Cc\\|Dcc\\|Bcc\\):$" t mew-face-header-important mew-face-header-to)
644 ("^Newsgroups:$" t mew-face-header-important mew-face-header-to)
645 ("^Date:$" t mew-face-header-important mew-face-header-date)
648 ("^X-Mew:$" t mew-face-header-important mew-face-header-xmew)
649 ("^\\(Received\\|Return-Path\\|Sender\\|Errors-To\\):$" nil)
650 ("^\\(Path\\|Distribution\\|Xref\\):$" nil)
651 ("^NNTP-Posting-" nil)
652 ("^\\(Message-Id\\|Posted\\|In-Reply-To\\|References\\|Precedence\\):$" nil)
655 ("^\\(Mime-Version\\|Lines\\):$" nil)
658 ("^Face:$" nil mew-face-header-private mew-face-header-marginal)
659 ("^X-Text-Classification:$" t mew-face-header-important mew-face-header-important)
660 ("^X-POPFile-Link:$" t mew-face-header-important mew-face-body-url)
661 ("^\\(X\\|Original\\)-" nil mew-face-header-private mew-face-header-marginal))))
662 '(mew-refile-guess-alist
665 ("noreply@adc1.apple.com" "+mm/adc")
666 ("mag2 ID 0000022139" "+mm/2ch")
667 ("noreply@sourceforge.net" "+from/sf-net"))
669 ("w3m-dev" "+ml/w3m-dev"))
671 ("glasgow-haskell-users@haskell.org" "+ml/ghc-users")
672 ("fink-devel@lists.sourceforge.net" "+ml/fink-devel"))
674 ("yun@kokonoe.com" "+mm/kokonoe"))
676 ("glasgow-haskell-users@haskell.org" "+ml/ghc-users")))))
679 ("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")))
680 '(mew-spam: "X-Text-Classification:")
688 (14 x-classification)
694 '(mouse-wheel-progessive-speed nil)
695 '(mouse-wheel-scroll-amount (quote (1 ((shift) . 5) ((control)))))
698 (Directory Genre Artist|Composer|Performer Album|Playlist)))
699 '(navi2ch-browse-url-browser-function (quote browse-url-firefox))
700 '(navi2ch-display-splash-screen nil)
701 '(navi2ch-list-moved-board-alist
703 (("http://mamono.2ch.net/ihou/" . "http://hideyoshi.2ch.net/ihou/"))))
704 '(navi2ch-mona-face-variable (quote navi2ch-mona12-face))
705 '(navi2ch-mona-on-message-mode t)
706 '(newsticker-html-renderer (quote w3m-region))
707 '(newsticker-url-list nil)
708 '(newsticker-url-list-defaults
710 (("slashdot" "http://slashdot.org/index.rss" nil 3600))))
711 '(ns-command-modifier (quote meta))
712 '(nxml-auto-insert-xml-declaration-flag t)
713 '(nxml-slash-auto-complete-flag t)
714 '(org-replace-disputed-keys t)
717 (("gnu" . "https://elpa.gnu.org/packages/")
718 ("melpa" . "https://melpa.org/packages/"))))
719 '(package-selected-packages (quote (cargo toml-mode rust-mode)))
720 '(rcirc-server-alist (quote (("irc1.ymir.jp" :nick "PHO`cons" nil nil))))
721 '(riece-layout "default")
724 (("middle-right" riece-configure-windows right middle)
725 ("middle-left" riece-configure-windows left middle)
726 ("top-right" riece-configure-windows right top)
727 ("top-left" riece-configure-windows left top)
728 ("bottom-right" riece-configure-windows right bottom)
729 ("bottom-left" riece-configure-windows left bottom)
730 ("top" riece-configure-windows-top)
731 ("spiral" riece-configure-windows-spiral)
732 ("default" . "middle-right"))))
733 '(riece-others-buffer-mode nil)
734 '(rng-schema-locating-files
736 ("schemas.xml" "~/share/nxml/schemas.xml" "/usr/pkg/share/emacs/site-lisp/nxml-mode/schema/schemas.xml")))
737 '(rst-level-face-base-light 50)
738 '(safe-local-variable-values (quote ((todo-categories "Todo" "Todo" "Todo" "Todo"))))
739 '(select-enable-clipboard t)
740 '(session-use-package t nil (session))
741 '(tramp-auto-save-directory "/tmp/tramp-auto-save")
742 '(tramp-completion-reread-directory-timeout 2 nil (tramp))
743 '(tramp-default-host "localhost" nil (tramp))
744 '(tramp-default-method "sshx" nil (tramp))
745 '(uniquify-buffer-name-style (quote forward) nil (uniquify))
746 '(uniquify-trailing-separator-p t)
747 '(vc-cvs-diff-switches (quote ("-u")))
748 '(vc-cvs-stay-local nil)
749 '(w3m-bookmark-file-coding-system (quote utf-8))
750 '(w3m-coding-system (quote utf-8))
751 '(w3m-coding-system-priority-list (quote (utf-8)))
752 '(w3m-default-coding-system (quote utf-8))
753 '(w3m-default-display-inline-images t)
754 '(w3m-file-coding-system (quote utf-8))
755 '(w3m-file-name-coding-system (quote utf-8))
756 '(w3m-fill-column 80)
757 '(w3m-input-coding-system (quote utf-8))
758 '(w3m-key-binding nil)
759 '(w3m-output-coding-system (quote utf-8))
760 '(w3m-terminal-coding-system (quote utf-8))
762 '(whitespace-global-modes (quote (not mew-draft-mode mew-summary-mode)))
765 (face tabs trailing space-before-tab newline indentation empty space-after-tab)))
766 '(woman-cache-filename "~/.wmncach.el")
767 '(yaml-block-literal-electric-alist (quote ((62 . "-")))))
769 ;; custom-set-faces was added by Custom.
770 ;; If you edit it by hand, you could mess it up, so be careful.
771 ;; Your init file should contain only one such instance.
772 ;; If there is more than one, they won't work right.
773 '(diff-added ((t (:inherit diff-changed :foreground "medium spring green" :weight extra-bold))))
774 '(diff-removed ((t (:foreground "gold3" :weight extra-bold))))
775 '(flyspell-incorrect ((t (:foreground "OrangeRed" :overline t))))
776 '(jaspace-highlight-tab-face ((((class color) (background dark)) (:foreground "gray70" :underline t))))
777 '(navi2ch-bm-new-unread-face ((t (:foreground "PaleGreen" :weight bold))))
778 '(navi2ch-bm-updated-cache-face ((t (:foreground "CornflowerBlue" :weight bold))))
779 '(navi2ch-bm-updated-unread-face ((t (:foreground "DarkSeaGreen3" :weight bold))))
780 '(textile-link-face ((t (:foreground "cyan"))))
781 '(textile-ol-bullet-face ((t (:foreground "dark orange"))))
782 '(textile-ul-bullet-face ((t (:foreground "deep sky blue"))))
783 '(which-func-face ((t (:background "black" :foreground "dark orange"))))
784 '(whitespace-empty ((t (:background "gray20" :foreground "firebrick"))))
785 '(whitespace-indentation ((t (:foreground "dimgray" :underline t))))
786 '(whitespace-line ((t (:background "gray20"))))
787 '(whitespace-tab ((t (:background "grey22" :foreground "dim gray" :underline (:color foreground-color :style wave))))))