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