]> 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 ;; 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.
7 (package-initialize)
8
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")
12
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)
20
21 ;; Settings for the Emacs itself ----------------------------------------------
22 (setq truncate-partial-width-windows t)
23 (setq make-backup-files nil)
24
25 (setq read-file-name-completion-ignore-case t)
26 (tool-bar-mode nil)
27
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)
31
32 (unless window-system
33   (normal-erase-is-backspace-mode t))
34
35 (setq-default tab-width 4)
36 (global-font-lock-mode t)
37
38 (auto-compression-mode t)
39 (which-function-mode t)
40 (setq visible-bell t)
41 (setq ring-bell-function (lambda ()))
42
43 (require 'server)
44 (if (server-running-p)
45     (message "Warning: server %S is already running." server-name)
46   (server-start))
47
48 ;; windmove
49 (windmove-default-keybindings)
50
51 ;; file renaming
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."
55   (interactive
56    (progn
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
68                                         (buffer-file-name))
69                                        new-name)
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)
78     (if was-modified
79         (save-buffer)
80       ;; Clear buffer-modified flag caused by set-visited-file-name
81       (set-buffer-modified-p nil)))
82
83   (setq default-directory (file-name-directory new-name))
84
85   (message "Renamed to %s." new-name))
86
87 ;; Host specific configuration ------------------------------------------------
88 (let ((host (system-name)))
89   (cond ((equal host "aria.cielonegro.org")
90          (progn
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:")
99                ))))))
100
101 ;; Settings for Browser --------------------------------------------------------
102 (global-set-key "\C-xm" 'browse-url-at-point)
103
104 ;; Setting for the Mode Line ---------------------------------------------------
105 (line-number-mode t)
106 (column-number-mode t)
107 (display-time)
108
109 ;; Setting for Frames ----------------------------------------------------------
110 (when window-system
111   (let ((host (system-name)))
112     (cond ((equal host "seras")
113            (set-frame-font "Dejavu Sans Mono 11" t))
114
115           ((equal host "yukari.cielonegro.org")
116            (set-frame-font "Dejavu Sans Mono 11" t))
117
118           ((equal host "aria.cielonegro.org")
119            (progn
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 "さざなみゴシック")
126              )))))
127
128 ;; Setting for Packages --------------------------------------------------------
129 (defun require-if-present (feature)
130   (condition-case e
131       (require feature)
132     (file-error
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
136
137 (defun load-if-present (file)
138   (condition-case e
139       (load file)
140     (file-error
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
144
145 (defun load-file-if-present (path)
146   (if (file-exists-p path)
147       (load-file path)
148     (message "Warning: file %s is absent" path)))
149
150 ;; cmake
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))
154
155 ;; ditz
156 (require-if-present 'ditz)
157
158 ;; flyspell
159 (require-if-present 'flyspell)
160
161 ;; jaspace
162 (require-if-present 'jaspace)
163
164 ;; glsl
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))
170
171 ;; rust
172 (autoload 'rust-mode "rust-mode" nil t)
173 (add-to-list 'auto-mode-alist '("\\.rs\\'" . rust-mode))
174
175 ;; session
176 (require-if-present 'session)
177 (if (featurep 'session)
178     (session-initialize))
179
180 ;; mediawiki
181 (require-if-present 'mediawiki)
182
183 ;; midnight
184 (require-if-present 'midnight)
185
186 ;; color-theme
187 (require-if-present 'color-theme)
188 (if (featurep 'color-theme)
189     (progn
190       (color-theme-initialize)
191       (color-theme-subtle-hacker)))
192
193 ;; multi-term
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)
197
198 ;; auto-complete
199 (require-if-present 'auto-complete-config)
200 (if (featurep 'auto-complete-config)
201     (progn
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))
206               '(autoconf-mode
207                 erlang-mode
208                 sql-mode))
209       (setq ac-modes (remove 'css-mode ac-modes))
210       (add-hook 'erlang-mode-hook
211                 (lambda ()
212                   (add-to-list 'ac-sources 'ac-source-semantic)))
213       (ac-config-default)))
214
215 ;; mic-paren
216 (require-if-present 'mic-paren)
217 (if (featurep 'mic-paren)
218     (paren-activate))
219
220 ;; elscreen
221 (condition-case e
222     (load "elscreen" "ElScreen" t)
223   (file-error
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)
228     (elscreen-start))
229 (require-if-present 'elscreen-w3m)
230
231 ;; undo-tree
232 (require-if-present 'undo-tree)
233 (if (featurep 'undo-tree)
234     (global-undo-tree-mode))
235
236 ;; MPC
237 ;(require-if-present 'mpc-autoloads)
238
239 ;; rst-mode
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))
245
246 ;; graphviz-dot-mode
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))
251
252 ;; textile-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))
256
257 ;; xsltxt-mode
258 (autoload 'xsltxt-mode "xsltxt-mode" "Major mode for xsltxt." t)
259 (add-to-list 'auto-mode-alist '("\\.xsltxt$" . xsltxt-mode))
260
261 ;; lua-mode
262 (autoload 'lua-mode "lua-mode" "Lua editing mode." t)
263 (add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode))
264
265 ;; protobuf-mode
266 (autoload 'protobuf-mode "protobuf-mode")
267 (add-to-list 'auto-mode-alist '("\\.proto\\'" . protobuf-mode))
268
269 ;; scala-mode2
270 (add-to-list 'load-path "~/sandbox/_scala/scala-mode2")
271 (require-if-present 'scala-mode2)
272
273 ;; sbt-mode
274 (add-to-list 'load-path "~/sandbox/_scala/sbt-mode")
275 (require-if-present 'sbt-mode)
276
277 ;; twittering-mode
278 (require-if-present 'twittering-mode)
279 (setq twittering-username "phonohawk")
280
281 ;; riece
282 (autoload 'riece "riece" "Start Riece" t)
283 (add-hook 'riece-after-load-startup-hook
284           #'(lambda ()
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)))
289
290 ;; CEDET
291 (add-to-list 'load-path "/usr/pkg/share/emacs/cedet/common")
292 (require-if-present 'cedet)
293
294 ;; ECB
295 (require-if-present 'ecb-autoloads)
296 (let* ((hosts '(("netbsd." .
297                  (("~/sandbox/yxmimeproc" "yxmimeproc")
298                   ("~/sandbox/YxMIME" "YxMIME.pm")
299                   ))
300                 ("g1.cuenote.jp" .
301                  (("~/sandbox/MR/engine/libycom" "libycom")
302                   ))
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")
317                   ))))
318        (paths (cdr (assoc (system-name) hosts))))
319   (setq ecb-source-path paths))
320
321 ;; leim
322 (require-if-present 'gaelic)
323
324 ;; rnc-mode
325 (autoload 'rnc-mode "rnc-mode")
326 (add-to-list 'auto-mode-alist '("\\.rnc\\'" . rnc-mode))
327
328 ;; bookmark
329 (setq bookmark-sort-flag nil)
330
331 ;; sudoku
332 (autoload 'sudoku "sudoku" "The Sudoku" t)
333
334 ;; mew
335 (autoload 'mew "mew" "Mew" t)
336
337 ;; cleite
338 (autoload 'cleite "cleite" "Cleite RSS Aggregator -- Emacs Interface" t)
339
340 ;; javascript
341 (add-to-list 'auto-mode-alist '("\\.js$" . javascript-mode))
342 (add-to-list 'auto-mode-alist '("\\.json$" . javascript-mode))
343
344 ;; typescript
345 (autoload 'typescript-mode "typescript-mode"
346   "Major mode for editing typescript." t)
347 (add-to-list 'auto-mode-alist '("\\.ts$" . typescript-mode))
348
349 ;; vimrc
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))
353
354 ;; ido
355 (require 'ido)
356 (ido-mode t)
357
358 ;; sokoban
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")
362
363 ;; nXML
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))
370
371 ;; sstp
372 (autoload 'sstp-mode "sstp" "SSTP Editing Major-Mode" t)
373
374 ;; ruby-mode
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
383           '(lambda ()
384             (inf-ruby-keys)
385           ))
386
387 ;; Haskell
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)
392
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)
400
401 (add-to-list 'auto-mode-alist '("\\.hs$" . haskell-mode))
402 (add-to-list 'auto-mode-alist '("\\.hsc$" . haskell-mode))
403
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)
407
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")))
411
412 ;; Hoogle
413 (autoload 'hoogle-lookup "hoogle" "Hoogle" t)
414 (global-set-key (kbd "C-c h") 'hoogle-lookup)
415
416 ;; c-mode
417 (mapcar (lambda (hook)
418       (add-hook hook
419             (lambda () (c-set-style "user"))))
420     '(c-mode-hook
421       c++-mode-hook
422       objc-mode-hook
423       java-mode-hook))
424
425 ;; EmacsWiki
426 (autoload 'emacs-wiki-find-file "emacs-wiki" "Emacs Wiki" t)
427 (defalias 'wiki 'emacs-wiki-find-file)
428
429 ;; cperl
430 (defalias 'perl-mode 'cperl-mode)
431 (setq cperl-indent-level 4)
432 (setq cperl-indent-parens-as-block t)
433
434 ;; Erlang
435 (require-if-present 'erlang-start)
436 (setq erlang-electric-commands nil)
437
438 ;; SKK
439 (require-if-present 'skk-autoloads)
440 (if (featurep 'skk-autoloads)
441         (progn
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
448                         '(("@" nil "@")
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
456
457 ;; navi2ch
458 (autoload 'navi2ch "navi2ch" "Navigator for 2ch for Emacs" t)
459
460 ;; migemo
461 (require-if-present 'migemo)
462 (setq migemo-isearch-enable-p nil)
463
464 ;; tiarra-conf
465 (setq load-path (cons (expand-file-name "~/sandbox/Tiarra") load-path))
466 (autoload 'tiarra-conf-mode "tiarra-conf" "tiarra.conf editing mode" t)
467
468 ;; po-mode
469 (autoload 'po-mode "po-mode")
470 (setq auto-mode-alist
471       (cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode)
472         auto-mode-alist))
473
474 ;; csv-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))
478
479 ;; tsv-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))
485
486 ;; markdown-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))
490
491 ;; yaml-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))
495
496 ;; less-css-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))
499
500 ;; Troublesome Tasks
501 (if (equal (system-name) "seras")
502     (progn
503       (defun edit-troublesome-tasks ()
504         (interactive)
505         (elscreen-create)
506         (find-file (expand-file-name "~/var/troublesome-tasks.txt")))
507       (define-key ctl-x-map "MT" #'edit-troublesome-tasks)))
508
509 ;; ChangeLog
510 (setq user-full-name "PHO")
511 (setq user-mail-address "pho@cielonegro.org")
512
513 (defun memo ()
514   (interactive)
515   (add-change-log-entry nil (expand-file-name "~/sync/memo.txt")))
516 (define-key ctl-x-map "MM" #'memo)
517
518 (defun depression ()
519   (interactive)
520   (add-change-log-entry nil (expand-file-name "~/sync/depression.txt")))
521 (define-key ctl-x-map "MD" #'depression)
522
523 (defun plant ()
524   (interactive)
525   (add-change-log-entry nil (expand-file-name "~/sync/plant.txt")))
526 (define-key ctl-x-map "MP" #'plant)
527
528 (defun robinson ()
529   (interactive)
530   (elscreen-create)
531   (find-file (expand-file-name "~/sync/good-things.txt"))
532   (split-window-horizontally)
533   (next-window)
534   (find-file (expand-file-name "~/sync/bad-things.txt"))
535   (next-window))
536 (define-key ctl-x-map "MR" #'robinson)
537
538 ;; Emacs Calc
539 (add-hook 'calc-start-hook
540           (lambda ()
541             (if (functionp 'paren-deactivate)
542                 (paren-deactivate))))
543 (add-hook 'calc-end-hook
544           (lambda ()
545             (if (functionp 'paren-activate)
546                 (paren-activate))))
547
548 ;;; emacs-w3m
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)
556
557 ;; pov-mode
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)
562                 ) auto-mode-alist))
563
564 ;; End of user configuration ---------------------------------------------------
565
566 ;; emacs auto edit
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
574    (quote
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
586    (quote
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
591     (quote
592      ((tool-bar-lines . 0)
593       (menu-bar-lines . 1)
594       (width . 80)
595       (height . 25)
596       (right-fringe)
597       (left-fringe))))
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)
614  '(ido-everywhere t)
615  '(ido-ignore-files
616    (quote
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
634    (quote
635     (("Wikipedia" "http://en.wikipedia.org/w/" "username" "password" "Main Page")
636      ("YmirDev" "https://ymirlink:santamo@update.forcast.jp/fcdiv/mwiki/" "PHO" "" "メインページ"))))
637  '(mew-field-spec
638    (quote
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)
646      ("^Reply-To:$" t)
647      ("^X-Mailer:$" t)
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)
653      ("^Delivered-" nil)
654      ("^List-" nil)
655      ("^\\(Mime-Version\\|Lines\\):$" nil)
656      ("^From$" nil)
657      ("^Status:$" 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
663    (quote
664     (("From:"
665       ("noreply@adc1.apple.com" "+mm/adc")
666       ("mag2 ID 0000022139" "+mm/2ch")
667       ("noreply@sourceforge.net" "+from/sf-net"))
668      ("Subject:"
669       ("w3m-dev" "+ml/w3m-dev"))
670      ("To:"
671       ("glasgow-haskell-users@haskell.org" "+ml/ghc-users")
672       ("fink-devel@lists.sourceforge.net" "+ml/fink-devel"))
673      ("Reply-To:"
674       ("yun@kokonoe.com" "+mm/kokonoe"))
675      ("Cc:"
676       ("glasgow-haskell-users@haskell.org" "+ml/ghc-users")))))
677  '(mew-scan-fields
678    (quote
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:")
681  '(mew-summary-form
682    (quote
683     (type
684      (5 date)
685      " "
686      (14 from)
687      " " t
688      (14 x-classification)
689      " "
690      (30 subj)
691      "|"
692      (0 body))))
693  '(midnight-mode t)
694  '(mouse-wheel-progessive-speed nil)
695  '(mouse-wheel-scroll-amount (quote (1 ((shift) . 5) ((control)))))
696  '(mpc-browser-tags
697    (quote
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
702    (quote
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
709    (quote
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)
715  '(package-archives
716    (quote
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")
722  '(riece-layout-alist
723    (quote
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
735    (quote
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))
761  '(w3m-use-cookies t)
762  '(whitespace-global-modes (quote (not mew-draft-mode mew-summary-mode)))
763  '(whitespace-style
764    (quote
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 . "-")))))
768 (custom-set-faces
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))))))