]> 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 ;; glsl
162 (autoload 'glsl-mode "glsl-mode" nil t)
163 (add-to-list 'auto-mode-alist '("\\.glsl\\'" . glsl-mode))
164 (add-to-list 'auto-mode-alist '("\\.vert\\'" . glsl-mode))
165 (add-to-list 'auto-mode-alist '("\\.frag\\'" . glsl-mode))
166 (add-to-list 'auto-mode-alist '("\\.geom\\'" . glsl-mode))
167
168 ;; jaspace
169 (require-if-present 'jaspace)
170
171 ;; pkgdiff
172 (add-to-list 'load-path "~/sandbox/_editors/emacs-pkgdiff")
173 (autoload 'pkgvi "pkgdiff" "Edit a copy of specified file." t)
174 (autoload 'pkgdiff "pkgdiff" "Show differences from a backup file." t)
175
176 ;; rust
177 (autoload 'rust-mode "rust-mode" nil t)
178 (add-to-list 'auto-mode-alist '("\\.rs\\'" . rust-mode))
179
180 ;; session
181 (require-if-present 'session)
182 (if (featurep 'session)
183     (session-initialize))
184
185 ;; mediawiki
186 (require-if-present 'mediawiki)
187
188 ;; midnight
189 (require-if-present 'midnight)
190
191 ;; color-theme
192 (require-if-present 'color-theme)
193 (if (featurep 'color-theme)
194     (progn
195       (color-theme-initialize)
196       (color-theme-subtle-hacker)))
197
198 ;; multi-term
199 (autoload 'multi-term "multi-term"
200   "Create new term buffer.
201 Will prompt you shell name when you type `C-u' before this command." t)
202
203 ;; auto-complete
204 (require-if-present 'auto-complete-config)
205 (if (featurep 'auto-complete-config)
206     (progn
207       (add-to-list 'ac-dictionary-directories
208                    "/usr/pkg/share/emacs/site-lisp/auto-complete/ac-dict")
209       (mapcar (lambda (mode)
210                 (add-to-list 'ac-modes mode))
211               '(autoconf-mode
212                 erlang-mode
213                 sql-mode))
214       (setq ac-modes (remove 'css-mode ac-modes))
215       (add-hook 'erlang-mode-hook
216                 (lambda ()
217                   (add-to-list 'ac-sources 'ac-source-semantic)))
218       (ac-config-default)))
219
220 ;; mic-paren
221 (require-if-present 'mic-paren)
222 (if (featurep 'mic-paren)
223     (paren-activate))
224
225 ;; elscreen
226 (condition-case e
227     (load "elscreen" "ElScreen" t)
228   (file-error
229    (if (equal (cadr e) "Cannot open load file")
230        (message "Warning: feature %s is absent" feature) ; warn and ignore
231      (apply 'signal (car e) (cdr e))))) ; rethrow
232 (if (featurep 'elscreen)
233     (elscreen-start))
234 (require-if-present 'elscreen-w3m)
235
236 ;; undo-tree
237 (require-if-present 'undo-tree)
238 (if (featurep 'undo-tree)
239     (global-undo-tree-mode))
240
241 ;; MPC
242 ;(require-if-present 'mpc-autoloads)
243
244 ;; rst-mode
245 (autoload 'rst-mode "rst"
246   "mode for editing reStructuredText documents" t)
247 (setq auto-mode-alist
248       (append '(("\\.rst$" . rst-mode)
249                 ("\\.rest$" . rst-mode)) auto-mode-alist))
250
251 ;; graphviz-dot-mode
252 (autoload 'graphviz-dot-mode "graphviz-dot-mode"
253   "Major mode for the dot language." t)
254 (add-to-list 'auto-mode-alist '("\\.dot\\'" . graphviz-dot-mode))
255 (add-to-list 'auto-mode-alist '("\\.gv\\'" . graphviz-dot-mode))
256
257 ;; textile-mode
258 (autoload 'textile-mode "textile-mode"
259   "Major mode for editing Textile documents." t)
260 (add-to-list 'auto-mode-alist '("\\.textile\\'" . textile-mode))
261
262 ;; xsltxt-mode
263 (autoload 'xsltxt-mode "xsltxt-mode" "Major mode for xsltxt." t)
264 (add-to-list 'auto-mode-alist '("\\.xsltxt$" . xsltxt-mode))
265
266 ;; lua-mode
267 (autoload 'lua-mode "lua-mode" "Lua editing mode." t)
268 (add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode))
269
270 ;; protobuf-mode
271 (autoload 'protobuf-mode "protobuf-mode")
272 (add-to-list 'auto-mode-alist '("\\.proto\\'" . protobuf-mode))
273
274 ;; scala-mode2
275 (add-to-list 'load-path "~/sandbox/_scala/scala-mode2")
276 (require-if-present 'scala-mode2)
277
278 ;; sbt-mode
279 (add-to-list 'load-path "~/sandbox/_scala/sbt-mode")
280 (require-if-present 'sbt-mode)
281
282 ;; twittering-mode
283 (require-if-present 'twittering-mode)
284 (setq twittering-username "phonohawk")
285
286 ;; riece
287 (autoload 'riece "riece" "Start Riece" t)
288 (add-hook 'riece-after-load-startup-hook
289           #'(lambda ()
290               (add-to-list 'riece-addons 'riece-alias)
291               (add-to-list 'riece-addons 'riece-skk-kakutei)
292               (add-to-list 'riece-addons 'riece-keyword)
293               (add-to-list 'riece-addons 'riece-ctlseq)))
294
295 ;; CEDET
296 (add-to-list 'load-path "/usr/pkg/share/emacs/cedet/common")
297 (require-if-present 'cedet)
298
299 ;; ECB
300 (require-if-present 'ecb-autoloads)
301 (let* ((hosts '(("netbsd." .
302                  (("~/sandbox/yxmimeproc" "yxmimeproc")
303                   ("~/sandbox/YxMIME" "YxMIME.pm")
304                   ))
305                 ("g1.cuenote.jp" .
306                  (("~/sandbox/MR/engine/libycom" "libycom")
307                   ))
308                 ("aria.cielonegro.org" .
309                  (("~/sandbox/_web-app/Rakka"           "Rakka")
310                   ("~/sandbox/_haskell/Lucu"            "Lucu")
311                   ("~/sandbox/_web-app/Kirschbaum"      "Kirschbaum")
312                   ("~/sandbox/_haskell/HsOpenSSL"       "HsOpenSSL")
313                   ("~/sandbox/_haskell/HsHyperEstraier" "HsHyperEstraier")
314                   ("~/sandbox/_haskell/HsSVN"           "HsSVN")
315                   ("~/sandbox/_game/RoRo"               "RoRo")
316                   ("~/sandbox/_haskell/HXT"             "HXT")
317                   ("~/sandbox/_haskell/hxt-compile"     "hxt-compile")
318                   ("~/src/ghc-6.10.1"                   "ghc-6.10.1")
319                   ("~/sandbox/sugar"                    "sugar")
320                   ("~/sandbox/_haskell/dns"             "dns")
321                   ("~/sandbox/_haskell/blackboard-ddns" "blackboard-ddns")
322                   ))))
323        (paths (cdr (assoc (system-name) hosts))))
324   (setq ecb-source-path paths))
325
326 ;; leim
327 (require-if-present 'gaelic)
328
329 ;; rnc-mode
330 (autoload 'rnc-mode "rnc-mode")
331 (add-to-list 'auto-mode-alist '("\\.rnc\\'" . rnc-mode))
332
333 ;; bookmark
334 (setq bookmark-sort-flag nil)
335
336 ;; sudoku
337 (autoload 'sudoku "sudoku" "The Sudoku" t)
338
339 ;; mew
340 (autoload 'mew "mew" "Mew" t)
341
342 ;; cleite
343 (autoload 'cleite "cleite" "Cleite RSS Aggregator -- Emacs Interface" t)
344
345 ;; javascript
346 (add-to-list 'auto-mode-alist '("\\.js$" . javascript-mode))
347 (add-to-list 'auto-mode-alist '("\\.json$" . javascript-mode))
348
349 ;; typescript
350 (autoload 'typescript-mode "typescript-mode"
351   "Major mode for editing typescript." t)
352 (add-to-list 'auto-mode-alist '("\\.ts$" . typescript-mode))
353
354 ;; vimrc
355 (autoload 'vimrc-mode "vimrc-mode"
356   "Major mode for editing `.vimrc', `xxx.vim' and `.exrc' files." t)
357 (add-to-list 'auto-mode-alist '("\\.vim\\(rc\\)?$" . vimrc-mode))
358
359 ;; ido
360 (require 'ido)
361 (ido-mode t)
362
363 ;; sokoban
364 (autoload 'sokoban "sokoban.el" "Start a new game of Sokoban." t)
365 (autoload 'sokoban-mode "sokoban.el" "Play Sokoban in current buffer." t)
366 (setq sokoban-playerfiles-dir "/usr/local/var/games/emacs-sokoban")
367
368 ;; nXML
369 (load-file-if-present "/usr/pkg/share/emacs/site-lisp/nxml-mode/rng-auto.el")
370 (defalias 'xml-mode 'nxml-mode)
371 (add-to-list 'auto-mode-alist '("\\.xml$" . nxml-mode))
372 (add-to-list 'auto-mode-alist '("\\.xi$" . nxml-mode))
373 (add-to-list 'auto-mode-alist '("\\.rdf$" . nxml-mode))
374 (add-to-list 'auto-mode-alist '("\\.rng$" . nxml-mode))
375
376 ;; sstp
377 (autoload 'sstp-mode "sstp" "SSTP Editing Major-Mode" t)
378
379 ;; ruby-mode
380 (autoload 'ruby-mode "ruby-mode" "Mode for editing ruby source files")
381 (setq auto-mode-alist
382       (append '(("\\.rb$" . ruby-mode)) auto-mode-alist))
383 (setq interpreter-mode-alist (append '(("ruby" .ruby-mode))
384                                      interpreter-mode-alist))
385 (autoload 'run-ruby "inf-ruby" "Run an inferior Ruby process")
386 (autoload 'inf-ruby-keys "inf-ruby" "set local key defs for inf-ruby in ruby-mode")
387 (add-hook 'ruby-mode-hook
388           '(lambda ()
389             (inf-ruby-keys)
390           ))
391
392 ;; Haskell
393 (autoload 'haskell-mode "haskell-mode"
394   "Major mode for editing Haskell scripts." t)
395 (autoload 'literate-haskell-mode "haskell-mode"
396   "Major mode for editing literate Haskell scripts." t)
397
398 (autoload 'run-haskell "inf-haskell" "" t)
399 (autoload 'switch-to-haskell "inf-haskell" "" t)
400 (autoload 'inferior-haskell-load-file "inf-haskell" "" t)
401 (autoload 'inferior-haskell-type "inf-haskell" "" t)
402 (autoload 'inferior-haskell-info "inf-haskell" "" t)
403 (autoload 'inferior-haskell-find-definition "inf-haskell" "" t)
404 (autoload 'inferior-haskell-find-haddock "inf-haskell" "" t)
405
406 (add-to-list 'auto-mode-alist '("\\.hs$" . haskell-mode))
407 (add-to-list 'auto-mode-alist '("\\.hsc$" . haskell-mode))
408
409 (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
410 (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
411 (add-hook 'haskell-mode-hook 'turn-on-haskell-ghci)
412
413 (load-if-present "~/sandbox/_input-method/haskell-unicode-input-method/haskell-unicode-input-method")
414  (add-hook 'haskell-mode-hook
415    (lambda () (set-input-method "haskell-unicode")))
416
417 ;; Hoogle
418 (autoload 'hoogle-lookup "hoogle" "Hoogle" t)
419 (global-set-key (kbd "C-c h") 'hoogle-lookup)
420
421 ;; c-mode
422 (mapcar (lambda (hook)
423       (add-hook hook
424             (lambda () (c-set-style "user"))))
425     '(c-mode-hook
426       c++-mode-hook
427       objc-mode-hook
428       java-mode-hook))
429
430 ;; EmacsWiki
431 (autoload 'emacs-wiki-find-file "emacs-wiki" "Emacs Wiki" t)
432 (defalias 'wiki 'emacs-wiki-find-file)
433
434 ;; cperl
435 (defalias 'perl-mode 'cperl-mode)
436 (setq cperl-indent-level 4)
437 (setq cperl-indent-parens-as-block t)
438
439 ;; Erlang
440 (require-if-present 'erlang-start)
441 (setq erlang-electric-commands nil)
442
443 ;; SKK
444 (require-if-present 'skk-autoloads)
445 (if (featurep 'skk-autoloads)
446         (progn
447           (require-if-present 'skk-study)
448           (global-set-key "\C-x\C-j" 'skk-mode)
449           (global-set-key "\C-xj" 'skk-auto-fill-mode)
450           (global-set-key "\C-xt" 'skk-tutorial)
451           (setq skk-use-jisx0201-input-method t)
452           (setq skk-rom-kana-rule-list
453                         '(("@" nil "@")
454                           ("wi" nil ("ヰ" . "ゐ"))
455                           ("we" nil ("ヱ" . "ゑ"))
456                           ;;("hh" "h" ("ン" . "ん"))
457                           ;;("mm" "m" ("ン" . "ん"))
458                           ("zx" nil ("ゝ" . "ヽ"))
459                           ("zc" nil ("ゞ" . "ヾ"))))
460           (set-input-method 'japanese-skk))) ; INPUT METHOD
461
462 ;; navi2ch
463 (autoload 'navi2ch "navi2ch" "Navigator for 2ch for Emacs" t)
464
465 ;; migemo
466 (require-if-present 'migemo)
467 (setq migemo-isearch-enable-p nil)
468
469 ;; tiarra-conf
470 (setq load-path (cons (expand-file-name "~/sandbox/Tiarra") load-path))
471 (autoload 'tiarra-conf-mode "tiarra-conf" "tiarra.conf editing mode" t)
472
473 ;; po-mode
474 (autoload 'po-mode "po-mode")
475 (setq auto-mode-alist
476       (cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode)
477         auto-mode-alist))
478
479 ;; csv-mode
480 (autoload 'csv-mode "csv-mode"
481   "Major mode for editing comma-separated value files." t)
482 (add-to-list 'auto-mode-alist '("\\.[Cc][Ss][Vv]\\'" . csv-mode))
483
484 ;; tsv-mode
485 (autoload 'tsv-mode "tsv-mode" "A mode to edit table like file" t)
486 (autoload 'tsv-normal-mode "tsv-mode" "A minor mode to edit table like file" t)
487 (setq tsv-write-annotation nil)
488 (setq tsv-separator-list '("\t"))
489 ;(add-to-list 'auto-mode-alist '("\\.[Tt][Ss][Vv]\\'" . tsv-mode))
490
491 ;; markdown-mode
492 ;; http://jblevins.org/projects/markdown-mode/
493 (autoload 'markdown-mode "markdown-mode.el" "Major mode for editing Markdown files" t)
494 (add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
495
496 ;; yaml-mode
497 (autoload 'yaml-mode "yaml-mode"
498   "Major mode for editing YAML files." t)
499 (add-to-list 'auto-mode-alist '("\\.ya?ml$"  . yaml-mode))
500
501 ;; less-css-mode
502 (autoload 'less-css-mode "less-css-mode" "Major mode for editing LESS files" t)
503 (add-to-list 'auto-mode-alist '("\\.less\\'" . less-css-mode))
504
505 ;; Troublesome Tasks
506 (if (equal (system-name) "seras")
507     (progn
508       (defun edit-troublesome-tasks ()
509         (interactive)
510         (elscreen-create)
511         (find-file (expand-file-name "~/var/troublesome-tasks.txt")))
512       (define-key ctl-x-map "MT" #'edit-troublesome-tasks)))
513
514 ;; ChangeLog
515 (setq user-full-name "PHO")
516 (setq user-mail-address "pho@cielonegro.org")
517
518 (defun memo ()
519   (interactive)
520   (add-change-log-entry nil (expand-file-name "~/sync/memo.txt")))
521 (define-key ctl-x-map "MM" #'memo)
522
523 (defun depression ()
524   (interactive)
525   (add-change-log-entry nil (expand-file-name "~/sync/depression.txt")))
526 (define-key ctl-x-map "MD" #'depression)
527
528 (defun plant ()
529   (interactive)
530   (add-change-log-entry nil (expand-file-name "~/sync/plant.txt")))
531 (define-key ctl-x-map "MP" #'plant)
532
533 (defun robinson ()
534   (interactive)
535   (elscreen-create)
536   (find-file (expand-file-name "~/sync/good-things.txt"))
537   (split-window-horizontally)
538   (next-window)
539   (find-file (expand-file-name "~/sync/bad-things.txt"))
540   (next-window))
541 (define-key ctl-x-map "MR" #'robinson)
542
543 ;; Emacs Calc
544 (add-hook 'calc-start-hook
545           (lambda ()
546             (if (functionp 'paren-deactivate)
547                 (paren-deactivate))))
548 (add-hook 'calc-end-hook
549           (lambda ()
550             (if (functionp 'paren-activate)
551                 (paren-activate))))
552
553 ;;; emacs-w3m
554 (autoload 'w3m "w3m" "Interface for w3m on Emacs." t)
555 (autoload 'w3m-browse-url "w3m" "Browse url by w3m." t)
556 (autoload 'w3m-find-file "w3m" "w3m interface function for local file." t)
557 (autoload 'w3m-search "w3m-search" "Search QUERY using SEARCH-ENGINE." t)
558 (autoload 'w3m-weather "w3m-weather" "Display weather report." t)
559 (autoload 'w3m-antenna "w3m-antenna" "Report chenge of WEB sites." t)
560 (autoload 'w3m-namazu "w3m-namazu" "Search files with Namazu." t)
561
562 ;; pov-mode
563 (autoload 'pov-mode "pov-mode" "POV-Ray scene file mode" t)
564 (setq auto-mode-alist
565       (append '(("\\.pov$" . pov-mode)
566                 ("\\.inc$" . pov-mode)
567                 ) auto-mode-alist))
568
569 ;; End of user configuration ---------------------------------------------------
570
571 ;; emacs auto edit
572 (put 'narrow-to-region 'disabled nil)
573 (custom-set-variables
574  ;; custom-set-variables was added by Custom.
575  ;; If you edit it by hand, you could mess it up, so be careful.
576  ;; Your init file should contain only one such instance.
577  ;; If there is more than one, they won't work right.
578  '(Info-additional-directory-list
579    (quote
580     ("/sw/share/info" "/usr/local/info" "/usr/local/share/info")))
581  '(ac-ignore-case nil)
582  '(appt-display-format (quote window))
583  '(appt-message-warning-time 20)
584  '(browse-url-browser-function (quote browse-url-firefox))
585  '(canlock-password "a14fa4d2601465d55585c291fa8b3943e189e716")
586  '(clean-buffer-list-delay-general 7)
587  '(cleite:auto-refresh-interval nil)
588  '(cleite:measure-srpc-call-time t)
589  '(compilation-scroll-output (quote first-error))
590  '(completion-ignored-extensions
591    (quote
592     (".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")))
593  '(cperl-merge-trailing-else nil)
594  '(csv-align-style (quote auto))
595  '(default-frame-alist
596     (quote
597      ((tool-bar-lines . 0)
598       (menu-bar-lines . 1)
599       (width . 80)
600       (height . 25)
601       (right-fringe)
602       (left-fringe))))
603  '(ditz-find-issue-directory-automatically-flag t)
604  '(ecb-add-path-for-not-matching-files (quote (t)))
605  '(ecb-help-info-path "/sw/share/info/ecb.info")
606  '(ecb-layout-name "left14")
607  '(ecb-options-version "2.50")
608  '(ecb-show-sources-in-directories-buffer (quote always))
609  '(ecb-tip-of-the-day nil)
610  '(ecb-tree-buffer-style (quote ascii-guides))
611  '(ecb-windows-width 0.2)
612  '(electric-indent-mode nil)
613  '(elscreen-display-tab t)
614  '(global-whitespace-mode t)
615  '(graphviz-dot-auto-indent-on-newline nil)
616  '(graphviz-dot-auto-indent-on-semi nil)
617  '(haskell-program-name "ghci")
618  '(ido-enable-flex-matching t)
619  '(ido-everywhere t)
620  '(ido-ignore-files
621    (quote
622     ("\\`CVS/" "\\`#" "\\`.#" "\\`\\.\\./" "\\`\\./" "\\.ttc")))
623  '(ido-work-directory-list-ignore-regexps (quote ("^\\(/mnt/ibm/\\|/Volumes/IBM80GB/\\)")))
624  '(indent-tabs-mode nil)
625  '(ispell-dictionary "english")
626  '(jabber-nickname "PHO")
627  '(jabber-resource "emacs")
628  '(jabber-server "jabber.jp")
629  '(jabber-username "phonohawk")
630  '(js2-auto-indent-flag nil)
631  '(js2-basic-offset 4)
632  '(js2-indent-on-enter-key nil)
633  '(js2-mirror-mode nil)
634  '(js2-use-font-lock-faces t)
635  '(lua-indent-level 4)
636  '(makefile-mode-hook (quote ((lambda nil (set-variable (quote tab-width) 8)))))
637  '(markdown-live-preview-delete-export (quote delete-on-export))
638  '(mediawiki-site-alist
639    (quote
640     (("Wikipedia" "http://en.wikipedia.org/w/" "username" "password" "Main Page")
641      ("YmirDev" "https://ymirlink:santamo@update.forcast.jp/fcdiv/mwiki/" "PHO" "" "メインページ"))))
642  '(mew-field-spec
643    (quote
644     (("^Resent-\\(From\\|To\\|Cc\\|Date\\)" t mew-face-header-important mew-face-header-important)
645      ("^Subject:$" t mew-face-header-important mew-face-header-subject)
646      ("^From:$" t mew-face-header-important mew-face-header-from)
647      ("^\\(To\\|Apparently-To\\):$" t mew-face-header-important mew-face-header-to)
648      ("^\\(Cc\\|Dcc\\|Bcc\\):$" t mew-face-header-important mew-face-header-to)
649      ("^Newsgroups:$" t mew-face-header-important mew-face-header-to)
650      ("^Date:$" t mew-face-header-important mew-face-header-date)
651      ("^Reply-To:$" t)
652      ("^X-Mailer:$" t)
653      ("^X-Mew:$" t mew-face-header-important mew-face-header-xmew)
654      ("^\\(Received\\|Return-Path\\|Sender\\|Errors-To\\):$" nil)
655      ("^\\(Path\\|Distribution\\|Xref\\):$" nil)
656      ("^NNTP-Posting-" nil)
657      ("^\\(Message-Id\\|Posted\\|In-Reply-To\\|References\\|Precedence\\):$" nil)
658      ("^Delivered-" nil)
659      ("^List-" nil)
660      ("^\\(Mime-Version\\|Lines\\):$" nil)
661      ("^From$" nil)
662      ("^Status:$" nil)
663      ("^Face:$" nil mew-face-header-private mew-face-header-marginal)
664      ("^X-Text-Classification:$" t mew-face-header-important mew-face-header-important)
665      ("^X-POPFile-Link:$" t mew-face-header-important mew-face-body-url)
666      ("^\\(X\\|Original\\)-" nil mew-face-header-private mew-face-header-marginal))))
667  '(mew-refile-guess-alist
668    (quote
669     (("From:"
670       ("noreply@adc1.apple.com" "+mm/adc")
671       ("mag2 ID 0000022139" "+mm/2ch")
672       ("noreply@sourceforge.net" "+from/sf-net"))
673      ("Subject:"
674       ("w3m-dev" "+ml/w3m-dev"))
675      ("To:"
676       ("glasgow-haskell-users@haskell.org" "+ml/ghc-users")
677       ("fink-devel@lists.sourceforge.net" "+ml/fink-devel"))
678      ("Reply-To:"
679       ("yun@kokonoe.com" "+mm/kokonoe"))
680      ("Cc:"
681       ("glasgow-haskell-users@haskell.org" "+ml/ghc-users")))))
682  '(mew-scan-fields
683    (quote
684     ("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")))
685  '(mew-spam: "X-Text-Classification:")
686  '(mew-summary-form
687    (quote
688     (type
689      (5 date)
690      " "
691      (14 from)
692      " " t
693      (14 x-classification)
694      " "
695      (30 subj)
696      "|"
697      (0 body))))
698  '(midnight-mode t)
699  '(mouse-wheel-progessive-speed nil)
700  '(mouse-wheel-scroll-amount (quote (1 ((shift) . 5) ((control)))))
701  '(mpc-browser-tags
702    (quote
703     (Directory Genre Artist|Composer|Performer Album|Playlist)))
704  '(navi2ch-browse-url-browser-function (quote browse-url-firefox))
705  '(navi2ch-display-splash-screen nil)
706  '(navi2ch-list-moved-board-alist
707    (quote
708     (("http://mamono.2ch.net/ihou/" . "http://hideyoshi.2ch.net/ihou/"))))
709  '(navi2ch-mona-face-variable (quote navi2ch-mona12-face))
710  '(navi2ch-mona-on-message-mode t)
711  '(newsticker-html-renderer (quote w3m-region))
712  '(newsticker-url-list nil)
713  '(newsticker-url-list-defaults
714    (quote
715     (("slashdot" "http://slashdot.org/index.rss" nil 3600))))
716  '(ns-command-modifier (quote meta))
717  '(nxml-auto-insert-xml-declaration-flag t)
718  '(nxml-slash-auto-complete-flag t)
719  '(org-replace-disputed-keys t)
720  '(package-archives
721    (quote
722     (("gnu" . "https://elpa.gnu.org/packages/")
723      ("melpa" . "https://melpa.org/packages/"))))
724  '(package-selected-packages (quote (cargo toml-mode rust-mode)))
725  '(rcirc-server-alist (quote (("irc1.ymir.jp" :nick "PHO`cons" nil nil))))
726  '(riece-layout "default")
727  '(riece-layout-alist
728    (quote
729     (("middle-right" riece-configure-windows right middle)
730      ("middle-left" riece-configure-windows left middle)
731      ("top-right" riece-configure-windows right top)
732      ("top-left" riece-configure-windows left top)
733      ("bottom-right" riece-configure-windows right bottom)
734      ("bottom-left" riece-configure-windows left bottom)
735      ("top" riece-configure-windows-top)
736      ("spiral" riece-configure-windows-spiral)
737      ("default" . "middle-right"))))
738  '(riece-others-buffer-mode nil)
739  '(rng-schema-locating-files
740    (quote
741     ("schemas.xml" "~/share/nxml/schemas.xml" "/usr/pkg/share/emacs/site-lisp/nxml-mode/schema/schemas.xml")))
742  '(rst-level-face-base-light 50)
743  '(safe-local-variable-values (quote ((todo-categories "Todo" "Todo" "Todo" "Todo"))))
744  '(select-enable-clipboard t)
745  '(session-use-package t nil (session))
746  '(tramp-auto-save-directory "/tmp/tramp-auto-save")
747  '(tramp-completion-reread-directory-timeout 2)
748  '(tramp-default-host "localhost" nil (tramp))
749  '(tramp-default-method "sshx" nil (tramp))
750  '(uniquify-buffer-name-style (quote forward) nil (uniquify))
751  '(uniquify-trailing-separator-p t)
752  '(vc-cvs-diff-switches (quote ("-u")))
753  '(vc-cvs-stay-local nil)
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))
766  '(w3m-use-cookies t)
767  '(whitespace-global-modes (quote (not mew-draft-mode mew-summary-mode)))
768  '(whitespace-style
769    (quote
770     (face tabs trailing space-before-tab newline indentation empty space-after-tab)))
771  '(woman-cache-filename "~/.wmncach.el")
772  '(yaml-block-literal-electric-alist (quote ((62 . "-")))))
773 (custom-set-faces
774  ;; custom-set-faces was added by Custom.
775  ;; If you edit it by hand, you could mess it up, so be careful.
776  ;; Your init file should contain only one such instance.
777  ;; If there is more than one, they won't work right.
778  '(diff-added ((t (:inherit diff-changed :foreground "medium spring green" :weight extra-bold))))
779  '(diff-removed ((t (:foreground "gold3" :weight extra-bold))))
780  '(flyspell-incorrect ((t (:foreground "OrangeRed" :overline t))))
781  '(jaspace-highlight-tab-face ((((class color) (background dark)) (:foreground "gray70" :underline t))))
782  '(navi2ch-bm-new-unread-face ((t (:foreground "PaleGreen" :weight bold))))
783  '(navi2ch-bm-updated-cache-face ((t (:foreground "CornflowerBlue" :weight bold))))
784  '(navi2ch-bm-updated-unread-face ((t (:foreground "DarkSeaGreen3" :weight bold))))
785  '(textile-link-face ((t (:foreground "cyan"))))
786  '(textile-ol-bullet-face ((t (:foreground "dark orange"))))
787  '(textile-ul-bullet-face ((t (:foreground "deep sky blue"))))
788  '(which-func-face ((t (:background "black" :foreground "dark orange"))))
789  '(whitespace-empty ((t (:background "gray20" :foreground "firebrick"))))
790  '(whitespace-indentation ((t (:foreground "dimgray" :underline t))))
791  '(whitespace-line ((t (:background "gray20"))))
792  '(whitespace-tab ((t (:background "grey22" :foreground "dim gray" :underline (:color foreground-color :style wave))))))