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 "kurumi.cielonegro.org")
113 (set-frame-font "Andale Mono 14"))
115 ((equal host "seras")
116 (set-frame-font "Dejavu Sans Mono 11" t))
118 ((equal host "yukari.cielonegro.org")
119 (set-frame-font "Dejavu Sans Mono 11" t)))))
121 ;; Setting for Packages --------------------------------------------------------
122 (defun require-if-present (feature)
126 (if (equal (cadr e) "Cannot open load file")
127 (message "Warning: feature %s is absent" feature) ; warn and ignore
128 (apply 'signal (car e) (cdr e)))))) ; rethrow
130 (defun load-if-present (file)
134 (if (equal (cadr e) "Cannot open load file")
135 (message "Warning: file named %s is absent" file) ; warn and ignore
136 (apply 'signal (car e) (cdr e)))))) ; rethrow
138 (defun load-file-if-present (path)
139 (if (file-exists-p path)
141 (message "Warning: file %s is absent" path)))
144 (autoload 'cmake-mode "cmake-mode" nil t)
145 (add-to-list 'auto-mode-alist '("CMakeLists\\.txt\\'" . cmake-mode))
146 (add-to-list 'auto-mode-alist '("\\.cmake\\'" . cmake-mode))
149 (require-if-present 'ditz)
152 (require-if-present 'flycheck)
153 ;(if (featurep 'flycheck)
154 ; (global-flycheck-mode))
156 (require-if-present 'flycheck-inline)
157 (if (featurep 'flycheck-inline)
158 (with-eval-after-load 'flycheck
159 (add-hook 'flycheck-mode-hook #'flycheck-inline-mode)))
162 (require-if-present 'flyspell)
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 'hengband-pickpref-mode "hengband-pickpref-mode" nil t)
175 (require-if-present 'jaspace)
178 (add-to-list 'load-path "~/sandbox/_editors/emacs-pkgdiff")
179 (autoload 'pkgvi "pkgdiff" "Edit a copy of specified file." t)
180 (autoload 'pkgdiff "pkgdiff" "Show differences from a backup file." t)
183 (autoload 'rust-mode "rust-mode" nil t)
184 (add-to-list 'auto-mode-alist '("\\.rs\\'" . rust-mode))
186 (require-if-present 'flycheck-rust)
187 (if (featurep 'flycheck-rust)
188 (with-eval-after-load 'rust-mode
189 (add-hook 'flycheck-mode-hook #'flycheck-rust-setup)))
192 (require-if-present 'session)
193 (if (featurep 'session)
194 (session-initialize))
197 (require-if-present 'mediawiki)
200 (require-if-present 'midnight)
203 (autoload 'multi-term "multi-term"
204 "Create new term buffer.
205 Will prompt you shell name when you type `C-u' before this command." t)
208 (require-if-present 'auto-complete-config)
209 (if (featurep 'auto-complete-config)
211 (add-to-list 'ac-dictionary-directories
212 "/usr/pkg/share/emacs/site-lisp/auto-complete/ac-dict")
213 (mapcar (lambda (mode)
214 (add-to-list 'ac-modes mode))
218 (setq ac-modes (remove 'css-mode ac-modes))
219 (add-hook 'erlang-mode-hook
221 (add-to-list 'ac-sources 'ac-source-semantic)))
222 (ac-config-default)))
225 (require-if-present 'mic-paren)
226 (if (featurep 'mic-paren)
230 (require-if-present 'elscreen)
231 (require-if-present 'elscreen-w3m)
232 (if (featurep 'elscreen)
236 (require-if-present 'undo-tree)
237 (if (featurep 'undo-tree)
238 (global-undo-tree-mode))
241 ;(require-if-present 'mpc-autoloads)
244 (autoload 'rst-mode "rst"
245 "mode for editing reStructuredText documents" t)
246 (setq auto-mode-alist
247 (append '(("\\.rst$" . rst-mode)
248 ("\\.rest$" . rst-mode)) auto-mode-alist))
251 (autoload 'graphviz-dot-mode "graphviz-dot-mode"
252 "Major mode for the dot language." t)
253 (add-to-list 'auto-mode-alist '("\\.dot\\'" . graphviz-dot-mode))
254 (add-to-list 'auto-mode-alist '("\\.gv\\'" . graphviz-dot-mode))
257 (autoload 'textile-mode "textile-mode"
258 "Major mode for editing Textile documents." t)
259 (add-to-list 'auto-mode-alist '("\\.textile\\'" . textile-mode))
262 (autoload 'xsltxt-mode "xsltxt-mode" "Major mode for xsltxt." t)
263 (add-to-list 'auto-mode-alist '("\\.xsltxt$" . xsltxt-mode))
266 (autoload 'lua-mode "lua-mode" "Lua editing mode." t)
267 (add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode))
270 (require-if-present 'projectile)
271 (if (featurep 'projectile)
274 (define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)))
277 (autoload 'protobuf-mode "protobuf-mode")
278 (add-to-list 'auto-mode-alist '("\\.proto\\'" . protobuf-mode))
281 (add-to-list 'load-path "~/sandbox/_scala/scala-mode2")
282 (require-if-present 'scala-mode2)
285 (add-to-list 'load-path "~/sandbox/_scala/sbt-mode")
286 (require-if-present 'sbt-mode)
289 (require-if-present 'twittering-mode)
290 (setq twittering-username "phonohawk")
293 (autoload 'riece "riece" "Start Riece" t)
294 (add-hook 'riece-after-load-startup-hook
296 (add-to-list 'riece-addons 'riece-alias)
297 (add-to-list 'riece-addons 'riece-skk-kakutei)
298 (add-to-list 'riece-addons 'riece-keyword)
299 (add-to-list 'riece-addons 'riece-ctlseq)))
302 (add-to-list 'load-path "/usr/pkg/share/emacs/cedet/common")
303 (require-if-present 'cedet)
306 (require-if-present 'ecb-autoloads)
307 (let* ((hosts '( ("yukari.cielonegro.org" .
308 ( ("~/sandbox/_games/acid-rain" "acid rain")
309 ("~/sandbox/_games/Natural-Mystic-Shaders" "Natural Mystic")
311 (paths (cdr (assoc (system-name) hosts))))
312 (setq ecb-source-path paths))
315 (require-if-present 'gaelic)
318 (autoload 'rnc-mode "rnc-mode")
319 (add-to-list 'auto-mode-alist '("\\.rnc\\'" . rnc-mode))
322 (setq bookmark-sort-flag nil)
325 (autoload 'sudoku "sudoku" "The Sudoku" t)
328 (autoload 'mew "mew" "Mew" t)
331 (autoload 'cleite "cleite" "Cleite RSS Aggregator -- Emacs Interface" t)
334 (add-to-list 'auto-mode-alist '("\\.js$" . javascript-mode))
335 (add-to-list 'auto-mode-alist '("\\.json$" . javascript-mode))
338 (autoload 'typescript-mode "typescript-mode"
339 "Major mode for editing typescript." t)
340 (add-to-list 'auto-mode-alist '("\\.ts$" . typescript-mode))
343 (autoload 'vimrc-mode "vimrc-mode"
344 "Major mode for editing `.vimrc', `xxx.vim' and `.exrc' files." t)
345 (add-to-list 'auto-mode-alist '("\\.vim\\(rc\\)?$" . vimrc-mode))
352 (autoload 'sokoban "sokoban.el" "Start a new game of Sokoban." t)
353 (autoload 'sokoban-mode "sokoban.el" "Play Sokoban in current buffer." t)
354 (setq sokoban-playerfiles-dir "/usr/local/var/games/emacs-sokoban")
357 (load-file-if-present "/usr/pkg/share/emacs/site-lisp/nxml-mode/rng-auto.el")
358 (defalias 'xml-mode 'nxml-mode)
359 (add-to-list 'auto-mode-alist '("\\.xml$" . nxml-mode))
360 (add-to-list 'auto-mode-alist '("\\.xi$" . nxml-mode))
361 (add-to-list 'auto-mode-alist '("\\.rdf$" . nxml-mode))
362 (add-to-list 'auto-mode-alist '("\\.rng$" . nxml-mode))
365 (autoload 'sstp-mode "sstp" "SSTP Editing Major-Mode" t)
368 (autoload 'ruby-mode "ruby-mode" "Mode for editing ruby source files")
369 (setq auto-mode-alist
370 (append '(("\\.rb$" . ruby-mode)) auto-mode-alist))
371 (setq interpreter-mode-alist (append '(("ruby" .ruby-mode))
372 interpreter-mode-alist))
373 (autoload 'run-ruby "inf-ruby" "Run an inferior Ruby process")
374 (autoload 'inf-ruby-keys "inf-ruby" "set local key defs for inf-ruby in ruby-mode")
375 (add-hook 'ruby-mode-hook
381 (autoload 'haskell-mode "haskell-mode"
382 "Major mode for editing Haskell scripts." t)
383 (autoload 'literate-haskell-mode "haskell-mode"
384 "Major mode for editing literate Haskell scripts." t)
386 (autoload 'run-haskell "inf-haskell" "" t)
387 (autoload 'switch-to-haskell "inf-haskell" "" t)
388 (autoload 'inferior-haskell-load-file "inf-haskell" "" t)
389 (autoload 'inferior-haskell-type "inf-haskell" "" t)
390 (autoload 'inferior-haskell-info "inf-haskell" "" t)
391 (autoload 'inferior-haskell-find-definition "inf-haskell" "" t)
392 (autoload 'inferior-haskell-find-haddock "inf-haskell" "" t)
394 (add-to-list 'auto-mode-alist '("\\.hs$" . haskell-mode))
395 (add-to-list 'auto-mode-alist '("\\.hsc$" . haskell-mode))
397 (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
398 (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
399 (add-hook 'haskell-mode-hook 'turn-on-haskell-ghci)
401 ;(add-hook 'haskell-mode-hook #'flycheck-haskell-setup)
403 (load-if-present "~/sandbox/_input-method/emacs-haskell-unicode-input-method/haskell-unicode-input-method")
404 (add-hook 'haskell-mode-hook
405 (lambda () (set-input-method "haskell-unicode")))
408 (autoload 'hoogle-lookup "hoogle" "Hoogle" t)
409 (global-set-key (kbd "C-c h") 'hoogle-lookup)
412 (mapcar (lambda (hook)
414 (lambda () (c-set-style "user"))))
421 (autoload 'emacs-wiki-find-file "emacs-wiki" "Emacs Wiki" t)
422 (defalias 'wiki 'emacs-wiki-find-file)
425 (defalias 'perl-mode 'cperl-mode)
426 (setq cperl-indent-level 4)
427 (setq cperl-indent-parens-as-block t)
430 (require-if-present 'erlang-start)
431 (setq erlang-electric-commands nil)
434 (require-if-present 'skk-autoloads)
435 (if (featurep 'skk-autoloads)
437 (require-if-present 'skk-study)
438 (global-set-key "\C-x\C-j" 'skk-mode)
439 (global-set-key "\C-xj" 'skk-auto-fill-mode)
440 (global-set-key "\C-xt" 'skk-tutorial)
441 (setq skk-use-jisx0201-input-method t)
442 (setq skk-rom-kana-rule-list
444 ("wi" nil ("ヰ" . "ゐ"))
445 ("we" nil ("ヱ" . "ゑ"))
446 ;;("hh" "h" ("ン" . "ん"))
447 ;;("mm" "m" ("ン" . "ん"))
448 ("zx" nil ("ゝ" . "ヽ"))
449 ("zc" nil ("ゞ" . "ヾ"))))
450 (set-input-method 'japanese-skk))) ; INPUT METHOD
453 (autoload 'navi2ch "navi2ch" "Navigator for 2ch for Emacs" t)
456 ;(require-if-present 'migemo)
457 ;(setq migemo-isearch-enable-p nil)
460 (setq load-path (cons (expand-file-name "~/sandbox/Tiarra") load-path))
461 (autoload 'tiarra-conf-mode "tiarra-conf" "tiarra.conf editing mode" t)
464 (autoload 'po-mode "po-mode")
465 (setq auto-mode-alist
466 (cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode)
470 (autoload 'csv-mode "csv-mode"
471 "Major mode for editing comma-separated value files." t)
472 (add-to-list 'auto-mode-alist '("\\.[Cc][Ss][Vv]\\'" . csv-mode))
475 (autoload 'tsv-mode "tsv-mode" "A mode to edit table like file" t)
476 (autoload 'tsv-normal-mode "tsv-mode" "A minor mode to edit table like file" t)
477 (setq tsv-write-annotation nil)
478 (setq tsv-separator-list '("\t"))
479 ;(add-to-list 'auto-mode-alist '("\\.[Tt][Ss][Vv]\\'" . tsv-mode))
482 ;; http://jblevins.org/projects/markdown-mode/
483 (autoload 'markdown-mode "markdown-mode.el" "Major mode for editing Markdown files" t)
484 (add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
487 (autoload 'yaml-mode "yaml-mode"
488 "Major mode for editing YAML files." t)
489 (add-to-list 'auto-mode-alist '("\\.ya?ml$" . yaml-mode))
492 (autoload 'less-css-mode "less-css-mode" "Major mode for editing LESS files" t)
493 (add-to-list 'auto-mode-alist '("\\.less\\'" . less-css-mode))
496 (if (equal (system-name) "seras")
498 (defun edit-troublesome-tasks ()
501 (find-file (expand-file-name "~/var/troublesome-tasks.txt")))
502 (define-key ctl-x-map "MT" #'edit-troublesome-tasks)))
505 (setq user-full-name "PHO")
506 (setq user-mail-address "pho@cielonegro.org")
510 (add-change-log-entry nil (expand-file-name "~/sync/memo.txt")))
511 (define-key ctl-x-map "MM" #'memo)
515 (add-change-log-entry nil (expand-file-name "~/sync/depression.txt")))
516 (define-key ctl-x-map "MD" #'depression)
520 (add-change-log-entry nil (expand-file-name "~/sync/plant.txt")))
521 (define-key ctl-x-map "MP" #'plant)
526 (find-file (expand-file-name "~/sync/good-things.txt"))
527 (split-window-horizontally)
529 (find-file (expand-file-name "~/sync/bad-things.txt"))
531 (define-key ctl-x-map "MR" #'robinson)
534 (add-hook 'calc-start-hook
536 (if (functionp 'paren-deactivate)
537 (paren-deactivate))))
538 (add-hook 'calc-end-hook
540 (if (functionp 'paren-activate)
544 (autoload 'w3m "w3m" "Interface for w3m on Emacs." t)
545 (autoload 'w3m-browse-url "w3m" "Browse url by w3m." t)
546 (autoload 'w3m-find-file "w3m" "w3m interface function for local file." t)
547 (autoload 'w3m-search "w3m-search" "Search QUERY using SEARCH-ENGINE." t)
548 (autoload 'w3m-weather "w3m-weather" "Display weather report." t)
549 (autoload 'w3m-antenna "w3m-antenna" "Report chenge of WEB sites." t)
550 (autoload 'w3m-namazu "w3m-namazu" "Search files with Namazu." t)
553 (autoload 'pov-mode "pov-mode" "POV-Ray scene file mode" t)
554 (setq auto-mode-alist
555 (append '(("\\.pov$" . pov-mode)
556 ("\\.inc$" . pov-mode)
559 ;; End of user configuration ---------------------------------------------------
562 (put 'narrow-to-region 'disabled nil)
563 (custom-set-variables
564 ;; custom-set-variables was added by Custom.
565 ;; If you edit it by hand, you could mess it up, so be careful.
566 ;; Your init file should contain only one such instance.
567 ;; If there is more than one, they won't work right.
568 '(ac-ignore-case nil)
569 '(appt-display-format (quote window))
570 '(appt-message-warning-time 20)
571 '(browse-url-browser-function (quote browse-url-firefox))
572 '(canlock-password "a14fa4d2601465d55585c291fa8b3943e189e716")
573 '(cl-old-struct-compat-mode t)
574 '(clean-buffer-list-delay-general 7)
575 '(cleite:auto-refresh-interval nil)
576 '(cleite:measure-srpc-call-time t)
577 '(column-number-mode t)
578 '(compilation-scroll-output (quote first-error))
579 '(completion-ignored-extensions
581 (".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")))
582 '(cperl-merge-trailing-else nil)
583 '(csv-align-style (quote auto))
584 '(custom-enabled-themes (quote (gnome2)))
587 ("64affc3597b4271ba6b0b428777d616cfb20d8f7f147dbd00f1de220b2b59bbf" "06e0662b31a2ae8da5c6b5e9a05b25fabd1dc8dd3c3661ac194201131cafb080" default)))
588 '(default-frame-alist
590 ((tool-bar-lines . 0)
596 '(display-time-mode t)
597 '(ditz-find-issue-directory-automatically-flag t)
598 '(ecb-add-path-for-not-matching-files (quote (t)))
599 '(ecb-help-info-path "/usr/pkg/info/ecb.info")
600 '(ecb-layout-name "left7")
601 '(ecb-options-version "2.50")
602 '(ecb-show-sources-in-directories-buffer (quote always))
603 '(ecb-tip-of-the-day nil)
604 '(ecb-tree-buffer-style (quote image))
605 '(ecb-windows-width 0.2)
606 '(electric-indent-mode nil)
607 '(elscreen-display-tab t)
608 '(global-undo-tree-mode 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-mode (quote both) nil (ido))
619 '(ido-work-directory-list-ignore-regexps (quote ("^\\(/mnt/ibm/\\|/Volumes/IBM80GB/\\)")))
620 '(indent-tabs-mode nil)
621 '(ispell-dictionary "english")
622 '(jabber-nickname "PHO")
623 '(jabber-resource "emacs")
624 '(jabber-server "jabber.jp")
625 '(jabber-username "phonohawk")
626 '(js2-auto-indent-flag nil)
627 '(js2-basic-offset 4)
628 '(js2-indent-on-enter-key nil)
629 '(js2-mirror-mode nil)
630 '(js2-use-font-lock-faces t)
631 '(lua-indent-level 4)
632 '(makefile-mode-hook (quote ((lambda nil (set-variable (quote tab-width) 8)))))
633 '(markdown-live-preview-delete-export (quote delete-on-export))
634 '(mediawiki-site-alist
636 (("Wikipedia" "http://en.wikipedia.org/w/" "username" "password" "Main Page"))))
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
721 (elscreen-fr color-theme-modern elscreen elscreen-multi-term projectile elixir-mode flycheck-haskell flycheck-inline flycheck-rust undo-tree auto-complete typescript-mode cargo toml-mode rust-mode)))
722 '(projectile-mode t nil (projectile))
723 '(rcirc-server-alist (quote (("irc1.ymir.jp" :nick "PHO`cons" nil nil))))
724 '(riece-layout "default")
727 (("middle-right" riece-configure-windows right middle)
728 ("middle-left" riece-configure-windows left middle)
729 ("top-right" riece-configure-windows right top)
730 ("top-left" riece-configure-windows left top)
731 ("bottom-right" riece-configure-windows right bottom)
732 ("bottom-left" riece-configure-windows left bottom)
733 ("top" riece-configure-windows-top)
734 ("spiral" riece-configure-windows-spiral)
735 ("default" . "middle-right"))))
736 '(riece-others-buffer-mode nil)
737 '(rng-schema-locating-files
739 ("schemas.xml" "~/share/nxml/schemas.xml" "/usr/pkg/share/emacs/site-lisp/nxml-mode/schema/schemas.xml")))
740 '(rst-level-face-base-light 50)
741 '(safe-local-variable-values (quote ((todo-categories "Todo" "Todo" "Todo" "Todo"))))
742 '(select-enable-clipboard t)
743 '(session-use-package t nil (session))
744 '(skk-background-mode (quote light))
745 '(tramp-auto-save-directory "/tmp/tramp-auto-save")
746 '(tramp-completion-reread-directory-timeout 2)
747 '(tramp-default-host "localhost")
748 '(tramp-default-method "sshx")
749 '(uniquify-buffer-name-style (quote forward) nil (uniquify))
750 '(uniquify-trailing-separator-p t)
751 '(vc-cvs-diff-switches (quote ("-u")))
752 '(vc-cvs-stay-local nil)
753 '(vc-handled-backends (quote (Git Hg)))
754 '(w3m-bookmark-file-coding-system (quote utf-8))
755 '(w3m-coding-system (quote utf-8))
756 '(w3m-coding-system-priority-list (quote (utf-8)))
757 '(w3m-default-coding-system (quote utf-8))
758 '(w3m-default-display-inline-images t)
759 '(w3m-file-coding-system (quote utf-8))
760 '(w3m-file-name-coding-system (quote utf-8))
761 '(w3m-fill-column 80)
762 '(w3m-input-coding-system (quote utf-8))
763 '(w3m-key-binding nil)
764 '(w3m-output-coding-system (quote utf-8))
765 '(w3m-terminal-coding-system (quote utf-8))
767 '(which-function-mode t)
768 '(whitespace-global-modes (quote (not mew-draft-mode mew-summary-mode)))
771 (face tabs trailing space-before-tab newline indentation empty space-after-tab)))
772 '(woman-cache-filename "~/.wmncach.el")
773 '(yaml-block-literal-electric-alist (quote ((62 . "-")))))
775 ;; custom-set-faces was added by Custom.
776 ;; If you edit it by hand, you could mess it up, so be careful.
777 ;; Your init file should contain only one such instance.
778 ;; If there is more than one, they won't work right.
779 '(diff-added ((t (:inherit diff-changed :foreground "medium spring green" :weight extra-bold))))
780 '(diff-removed ((t (:foreground "gold3" :weight extra-bold))))
781 '(flyspell-incorrect ((t (:foreground "OrangeRed" :overline t))))
782 '(font-lock-comment-face ((t (:foreground "white smoke"))))
783 '(font-lock-keyword-face ((t (:foreground "salmon"))))
784 '(jaspace-highlight-tab-face ((((class color) (background dark)) (:foreground "gray70" :underline t))))
785 '(mode-line ((t (:background "grey75" :foreground "black" :box (:line-width -1 :style released-button)))))
786 '(navi2ch-bm-new-unread-face ((t (:foreground "PaleGreen" :weight bold))))
787 '(navi2ch-bm-updated-cache-face ((t (:foreground "CornflowerBlue" :weight bold))))
788 '(navi2ch-bm-updated-unread-face ((t (:foreground "DarkSeaGreen3" :weight bold))))
789 '(org-level-1 ((t (:foreground "pale turquoise"))))
790 '(textile-link-face ((t (:foreground "cyan"))))
791 '(textile-ol-bullet-face ((t (:foreground "dark orange"))))
792 '(textile-ul-bullet-face ((t (:foreground "deep sky blue"))))
793 '(which-func-face ((t (:background "black" :foreground "dark orange"))))
794 '(whitespace-empty ((t (:background "gray20" :foreground "firebrick"))))
795 '(whitespace-indentation ((t (:foreground "dimgray" :underline t))))
796 '(whitespace-line ((t (:background "gray20"))))
797 '(whitespace-tab ((t (:background "grey22" :foreground "dim gray" :underline (:color foreground-color :style wave))))))