]> 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 ;; Load paths -----------------------------------------------------------------
4 (add-to-list 'load-path (expand-file-name "~/.elisp"))
5 (add-to-list 'load-path "/usr/local/share/emacs/site-lisp")
6
7 ;; Setting for encodings of the environment -----------------------------------
8 ;(set-language-environment 'Japanese)
9 (set-default-coding-systems 'utf-8)
10 (set-terminal-coding-system 'utf-8)
11 (setq default-file-name-coding-system 'utf-8)
12 (set-keyboard-coding-system 'utf-8)
13 (set-clipboard-coding-system 'utf-8)
14
15 ;; Settings for the Emacs itself ----------------------------------------------
16 (setq truncate-partial-width-windows t)
17 (setq make-backup-files nil)
18
19 (setq read-file-name-completion-ignore-case t)
20 (tool-bar-mode nil)
21
22 (global-set-key "\C-\\" 'toggle-input-method)
23
24 (unless window-system
25   (normal-erase-is-backspace-mode t))
26
27 (setq-default tab-width 4)
28 (global-font-lock-mode t)
29
30 (auto-compression-mode t)
31 (setq visible-bell t)
32 (setq ring-bell-function (lambda ()))
33 (windmove-default-keybindings)
34
35 (require 'server)
36 (if (server-running-p)
37     (message "Warning: server %S is already running." server-name)
38   (server-start))
39
40 ;; Host specific configuration ------------------------------------------------
41 (let ((host (system-name)))
42   (cond ((equal host "aria.cielonegro.org")
43          (progn
44            ;; Use firefox as the default browser.
45            (setq browse-url-firefox-program "/opt/local/bin/firefox")
46            ;; Specify how to connect to some of the remote servers.
47            (setq tramp-default-proxies-alist nil)
48            (add-to-list 'tramp-default-proxies-alist
49                         '("rd8" nil "/sshx:pho@yebisu1.ymir.jp:"))
50            (add-to-list 'tramp-default-proxies-alist
51                         '("yebisu1\\.ymir\\.jp" nil "/sshx:pho@boss:"))))))
52
53 ;; Settings for Browser --------------------------------------------------------
54 (setq browse-url-browser-function 'w3m-browse-url)
55 (global-set-key "\C-xm" 'browse-url-at-point)
56
57 ;; Setting for the Mode Line ---------------------------------------------------
58 (line-number-mode t)
59 (column-number-mode t)
60 (display-time)
61
62 ;; Setting for Frames ----------------------------------------------------------
63 (when window-system
64   (if (equal (system-name) "seras")
65       (set-default-font "Dejavu Sans Mono 11")
66     (set-default-font "Dejavu Sans Mono 13")))
67
68 ;(when window-system
69 ;  (set-default-font "Inconsolata-14")
70 ;  (set-face-font 'variable-pitch "Inconsolata-14")
71 ;  (set-fontset-font (frame-parameter nil 'font)
72 ;                    'japanese-jisx0208
73 ;                    '("Takaoゴシック" . "unicode-bmp")))
74
75 ;(when window-system
76 ;  (add-to-list 'default-frame-alist
77 ;               '(font . "Bitstream Vera Sans Mono 12"))
78 ;  (set-frame-font "Bitstream Vera Sans Mono 12")
79 ;  (set-fontset-font nil;(frame-parameter nil 'font)
80 ;                    'japanese-jisx0208
81 ;                    '("Hiragino Kaku Gothic Pro W3" . "unicode-bmp")))
82
83 ;; Hooks for newline-and-indent ------------------------------------------------
84 ;(mapcar (lambda (hook)
85 ;     (add-hook hook
86 ;           (lambda ()
87 ;             (local-set-key "\C-m" 'newline-and-indent)
88 ;             (local-set-key "\C-j" 'newline)
89 ;             )))
90 ;   '(perl-mode-hook
91 ;     cperl-mode-hook
92 ;     java-mode-hook
93 ;     javascript-mode-hook
94 ;     c-mode-hook
95 ;     c++-mode-hook
96 ;     objc-mode-hook
97 ;     emacs-lisp-mode-hook
98 ;     lisp-mode-hook
99 ;     yatex-mode-hook
100 ;     css-mode-hook
101 ;     scheme-mode-hook))
102
103 ;; Setting for Packages --------------------------------------------------------
104 (defun require-if-present (feature)
105   (condition-case e
106       (require feature)
107     (file-error
108      (if (equal (cadr e) "Cannot open load file")
109          (message "Warning: feature %s is absent" feature) ; warn and ignore
110        (apply 'signal (car e) (cdr e)))))) ; rethrow
111
112 (defun load-if-present (file)
113   (condition-case e
114       (load file)
115     (file-error
116      (if (equal (cadr e) "Cannot open load file")
117          (message "Warning: file named %s is absent" file) ; warn and ignore
118        (apply 'signal (car e) (cdr e)))))) ; rethrow
119
120 (defun load-file-if-present (path)
121   (if (file-exists-p path)
122       (load-file path)
123     (message "Warning: file %s is absent" path)))
124
125 ;; session
126 (require-if-present 'session)
127
128 ;; flyspell
129 (require-if-present 'flyspell)
130
131 ;; ditz
132 (require-if-present 'ditz)
133
134 ;; jaspace
135 (require-if-present 'jaspace)
136
137 ;; color-theme
138 (require-if-present 'color-theme)
139 (if (featurep 'color-theme)
140     (progn
141       (color-theme-initialize)
142       (color-theme-subtle-hacker)))
143
144 ;; auto-complete
145 (require-if-present 'auto-complete-config)
146 (if (featurep 'auto-complete-config)
147     (progn
148       (add-to-list 'ac-dictionary-directories
149                    "/usr/pkg/share/emacs/site-lisp/auto-complete/ac-dict")
150       (mapcar (lambda (mode)
151                 (add-to-list 'ac-modes mode))
152               '(autoconf-mode
153                 erlang-mode
154                 sql-mode))
155       (setq ac-modes (remove 'css-mode ac-modes))
156       (add-hook 'erlang-mode-hook
157                 (lambda ()
158                   (add-to-list 'ac-sources 'ac-source-semantic)))
159       (ac-config-default)))
160
161 ;; mic-paren
162 (require-if-present 'mic-paren)
163 (if (featurep 'mic-paren)
164     (paren-activate))
165
166 ;; elscreen
167 (load "elscreen" "ElScreen" t)
168 (require-if-present 'elscreen-w3m)
169
170 ;; undo-tree
171 (require-if-present 'undo-tree)
172 (if (featurep 'undo-tree)
173         (global-undo-tree-mode))
174
175 ;; MPC
176 ;(require-if-present 'mpc-autoloads)
177
178 ;; rst-mode
179 (autoload 'rst-mode "rst"
180   "mode for editing reStructuredText documents" t)
181 (setq auto-mode-alist
182       (append '(("\\.rst$" . rst-mode)
183                 ("\\.rest$" . rst-mode)) auto-mode-alist))
184
185 ;; lua-mode
186 (autoload 'lua-mode "lua-mode" "Lua editing mode." t)
187 (add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode) auto-mode-alist)
188
189 ;; twittering-mode
190 (require-if-present 'twittering-mode)
191 (setq twittering-username "phonohawk")
192
193 ;; riece
194 (autoload 'riece "riece" "Start Riece" t)
195 (add-hook 'riece-after-load-startup-hook
196                   #'(lambda ()
197                           (add-to-list 'riece-addons 'riece-alias)
198                           (add-to-list 'riece-addons 'riece-skk-kakutei)
199                           (add-to-list 'riece-addons 'riece-keyword)
200                           (add-to-list 'riece-addons 'riece-ctlseq)))
201
202 ;; ecb
203 (require-if-present 'ecb-autoloads)
204 (let* ((hosts '(("netbsd." .
205                  (("~/sandbox/yxmimeproc" "yxmimeproc")
206                   ("~/sandbox/YxMIME" "YxMIME.pm")
207                   ))
208                 ("g1.cuenote.jp" .
209                  (("~/sandbox/MR/engine/libycom" "libycom")
210                   ))
211                 ("aria.cielonegro.org" .
212                  (("~/sandbox/_web-app/Rakka"           "Rakka")
213                   ("~/sandbox/_haskell/Lucu"            "Lucu")
214                   ("~/sandbox/_web-app/Kirschbaum"      "Kirschbaum")
215                   ("~/sandbox/_haskell/HsOpenSSL"       "HsOpenSSL")
216                   ("~/sandbox/_haskell/HsHyperEstraier" "HsHyperEstraier")
217                   ("~/sandbox/_haskell/HsSVN"           "HsSVN")
218                   ("~/sandbox/_game/RoRo"               "RoRo")
219                   ("~/sandbox/_haskell/HXT"             "HXT")
220                   ("~/sandbox/_haskell/hxt-compile"     "hxt-compile")
221                   ("~/src/ghc-6.10.1"                   "ghc-6.10.1")
222                   ("~/sandbox/sugar"                    "sugar")
223                   ("~/sandbox/_haskell/dns"             "dns")
224                   ("~/sandbox/_haskell/blackboard-ddns" "blackboard-ddns")
225                   ))))
226        (paths (cdr (assoc (system-name) hosts))))
227   (setq ecb-source-path paths))
228
229 ;; leim
230 (require-if-present 'gaelic)
231
232 ;; rnc-mode
233 (autoload 'rnc-mode "rnc-mode")
234 (add-to-list 'auto-mode-alist '("\\.rnc\\'" . rnc-mode))
235
236 ;; bookmark
237 (setq bookmark-sort-flag nil)
238
239 ;; sudoku
240 (autoload 'sudoku "sudoku" "The Sudoku" t)
241
242 ;; mew
243 (autoload 'mew "mew" "Mew" t)
244
245 ;; cleite
246 (autoload 'cleite "cleite" "Cleite RSS Aggregator -- Emacs Interface" t)
247
248 ;; javascript
249 (autoload 'js2-mode "js2" nil t)
250 (add-to-list 'auto-mode-alist '("\\.js$" . js2-mode))
251
252 ;; ido
253 (require 'ido)
254 (ido-mode t)
255
256 ;; sokoban
257 (autoload 'sokoban "sokoban.el" "Start a new game of Sokoban." t)
258 (autoload 'sokoban-mode "sokoban.el" "Play Sokoban in current buffer." t)
259 (setq sokoban-playerfiles-dir "/usr/local/var/games/emacs-sokoban")
260
261 ;; nXML
262 (load-file-if-present "/usr/pkg/share/emacs/site-lisp/nxml-mode/rng-auto.el")
263 (defalias 'xml-mode 'nxml-mode)
264 (add-to-list 'auto-mode-alist '("\\.xml$" . nxml-mode))
265 (add-to-list 'auto-mode-alist '("\\.xi$" . nxml-mode))
266 (add-to-list 'auto-mode-alist '("\\.rdf$" . nxml-mode))
267 (add-to-list 'auto-mode-alist '("\\.rng$" . nxml-mode))
268
269 ;; sstp
270 (autoload 'sstp-mode "sstp" "SSTP Editing Major-Mode" t)
271
272 ;; ruby-mode
273 (autoload 'ruby-mode "ruby-mode" "Mode for editing ruby source files")
274 (setq auto-mode-alist
275       (append '(("\\.rb$" . ruby-mode)) auto-mode-alist))
276 (setq interpreter-mode-alist (append '(("ruby" .ruby-mode))
277                                      interpreter-mode-alist))
278 (autoload 'run-ruby "inf-ruby" "Run an inferior Ruby process")
279 (autoload 'inf-ruby-keys "inf-ruby" "set local key defs for inf-ruby in ruby-mode")
280 (add-hook 'ruby-mode-hook
281           '(lambda ()
282             (inf-ruby-keys)
283           ))
284
285 ;; Haskell
286 (load-if-present "haskell-site-file.el")
287
288 (autoload 'run-haskell "inf-haskell" "" t)
289 (autoload 'switch-to-haskell "inf-haskell" "" t)
290 (autoload 'inferior-haskell-load-file "inf-haskell" "" t)
291 (autoload 'inferior-haskell-type "inf-haskell" "" t)
292 (autoload 'inferior-haskell-info "inf-haskell" "" t)
293 (autoload 'inferior-haskell-find-definition "inf-haskell" "" t)
294 (autoload 'inferior-haskell-find-haddock "inf-haskell" "" t)
295
296 (add-to-list 'auto-mode-alist '("\\.hs$" . haskell-mode))
297 (add-to-list 'auto-mode-alist '("\\.hsc$" . haskell-mode))
298
299 (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
300 (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
301 (add-hook 'haskell-mode-hook 'turn-on-haskell-ghci)
302
303 (load-if-present "~/sandbox/_input-method/haskell-unicode-input-method/haskell-unicode-input-method")
304  (add-hook 'haskell-mode-hook
305    (lambda () (set-input-method "haskell-unicode")))
306
307
308 ;; Hoogle
309 (autoload 'hoogle-lookup "hoogle" "Hoogle" t)
310 (global-set-key (kbd "C-c h") 'hoogle-lookup)
311
312 ;; c-mode
313 (mapcar (lambda (hook)
314       (add-hook hook
315             (lambda () (c-set-style "user"))))
316     '(c-mode-hook
317       c++-mode-hook
318       objc-mode-hook
319       java-mode-hook))
320
321 ;; css
322 (autoload 'css-mode "css-mode" "For editing CSS file" t)
323 (setq cssm-indent-level 4)
324 (setq cssm-mirror-mode nil)
325 (setq cssm-indent-function 'cssm-c-style-indenter)
326 (setq auto-mode-alist
327       (append
328        '(("\\.css$" . css-mode))
329        auto-mode-alist))
330
331 ;; EmacsWiki
332 (autoload 'emacs-wiki-find-file "emacs-wiki" "Emacs Wiki" t)
333 (defalias 'wiki 'emacs-wiki-find-file)
334
335 ;; cperl
336 (defalias 'perl-mode 'cperl-mode)
337 (setq cperl-indent-level 4)
338 (setq cperl-indent-parens-as-block t)
339
340 ;; Erlang
341 (add-to-list 'load-path "/usr/pkg/lib/erlang/lib/tools-2.6/emacs")
342 (require-if-present 'erlang-start)
343 (setq erlang-electric-commands nil)
344
345 ;; SKK
346 (require 'skk-autoloads)
347 (require 'skk-study)
348 (global-set-key "\C-x\C-j" 'skk-mode)
349 (global-set-key "\C-xj" 'skk-auto-fill-mode)
350 (global-set-key "\C-xt" 'skk-tutorial)
351 (setq skk-use-jisx0201-input-method t)
352 (setq skk-rom-kana-rule-list
353       '(("@" nil "@")
354         ("wi" nil ("ヰ" . "ゐ"))
355         ("we" nil ("ヱ" . "ゑ"))
356         ;;("hh" "h" ("ン" . "ん"))
357         ;;("mm" "m" ("ン" . "ん"))
358         ("zx" nil ("ゝ" . "ヽ"))
359         ("zc" nil ("ゞ" . "ヾ"))))
360 (set-input-method 'japanese-skk) ; INPUT METHOD
361
362 ;; navi2ch
363 (autoload 'navi2ch "navi2ch" "Navigator for 2ch for Emacs" t)
364
365 ;; migemo
366 (require-if-present 'migemo)
367
368 ;; tiarra-conf
369 (setq load-path (cons (expand-file-name "~/sandbox/Tiarra") load-path))
370 (autoload 'tiarra-conf-mode "tiarra-conf" "tiarra.conf editing mode" t)
371
372 ;; po-mode
373 (autoload 'po-mode "po-mode")
374 (setq auto-mode-alist
375       (cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode)
376             auto-mode-alist))
377
378 ;; ChangeLog
379 (setq user-full-name "PHO")
380 (setq user-mail-address "pho@cielonegro.org")
381
382 (defun memo ()
383   (interactive)
384   (add-change-log-entry nil (expand-file-name "~/sync/memo.txt")))
385 (define-key ctl-x-map "MM" #'memo)
386
387 (defun depression ()
388   (interactive)
389   (add-change-log-entry nil (expand-file-name "~/sync/depression.txt")))
390 (define-key ctl-x-map "MD" #'depression)
391
392 (defun plant ()
393   (interactive)
394   (add-change-log-entry nil (expand-file-name "~/sync/plant.txt")))
395 (define-key ctl-x-map "MP" #'plant)
396
397 (defun robinson ()
398   (interactive)
399   (elscreen-create)
400   (find-file (expand-file-name "~/sync/good-things.txt"))
401   (split-window-horizontally)
402   (next-window)
403   (find-file (expand-file-name "~/sync/bad-things.txt"))
404   (next-window))
405 (define-key ctl-x-map "MR" #'robinson)
406
407 ;; Emacs Calc
408 (add-hook 'calc-start-hook
409           (lambda ()
410             (if (functionp 'paren-deactivate)
411                 (paren-deactivate))))
412 (add-hook 'calc-end-hook
413           (lambda ()
414             (if (functionp 'paren-activate)
415                 (paren-activate))))
416
417 ;;; emacs-w3m
418 (autoload 'w3m "w3m" "Interface for w3m on Emacs." t)
419 (autoload 'w3m-browse-url "w3m" "Browse url by w3m." t)
420 (autoload 'w3m-find-file "w3m" "w3m interface function for local file." t)
421 (autoload 'w3m-search "w3m-search" "Search QUERY using SEARCH-ENGINE." t)
422 (autoload 'w3m-weather "w3m-weather" "Display weather report." t)
423 (autoload 'w3m-antenna "w3m-antenna" "Report chenge of WEB sites." t)
424 (autoload 'w3m-namazu "w3m-namazu" "Search files with Namazu." t)
425
426 ;; pov-mode
427 (autoload 'pov-mode "pov-mode" "POV-Ray scene file mode" t)
428 (setq auto-mode-alist
429       (append '(("\\.pov$" . pov-mode)
430                 ("\\.inc$" . pov-mode)
431                 ) auto-mode-alist))
432
433 ;; End of user configuration ---------------------------------------------------
434
435 ;; emacs auto edit
436 (put 'narrow-to-region 'disabled nil)
437 (custom-set-variables
438   ;; custom-set-variables was added by Custom.
439   ;; If you edit it by hand, you could mess it up, so be careful.
440   ;; Your init file should contain only one such instance.
441   ;; If there is more than one, they won't work right.
442  '(Info-additional-directory-list (quote ("/sw/share/info" "/usr/local/info" "/usr/local/share/info")))
443  '(ac-ignore-case nil)
444  '(appt-display-format (quote window))
445  '(appt-message-warning-time 20)
446  '(canlock-password "a14fa4d2601465d55585c291fa8b3943e189e716")
447  '(cleite:auto-refresh-interval nil)
448  '(cleite:measure-srpc-call-time t)
449  '(completion-ignored-extensions (quote (".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")))
450  '(cperl-merge-trailing-else nil)
451  '(default-frame-alist (quote ((tool-bar-lines . 0) (menu-bar-lines . 1) (width . 80) (height . 25) (right-fringe) (left-fringe))))
452  '(ditz-find-issue-directory-automatically-flag t)
453  '(ecb-add-path-for-not-matching-files (quote (t)))
454  '(ecb-help-info-path "/sw/share/info/ecb.info")
455  '(ecb-layout-name "left14")
456  '(ecb-options-version "2.32")
457  '(ecb-show-sources-in-directories-buffer (quote always))
458  '(ecb-tip-of-the-day nil)
459  '(ecb-tree-buffer-style (quote ascii-guides))
460  '(ecb-windows-width 0.2)
461  '(elscreen-display-tab t)
462  '(haskell-program-name "ghci")
463  '(ido-enable-flex-matching t)
464  '(ido-everywhere t)
465  '(ido-ignore-files (quote ("\\`CVS/" "\\`#" "\\`.#" "\\`\\.\\./" "\\`\\./" "\\.ttc")))
466  '(ido-work-directory-list-ignore-regexps (quote ("^\\(/mnt/ibm/\\|/Volumes/IBM80GB/\\)")))
467  '(indent-tabs-mode nil)
468  '(jabber-nickname "PHO")
469  '(jabber-resource "emacs")
470  '(jabber-server "jabber.jp")
471  '(jabber-username "phonohawk")
472  '(jaspace-highlight-tabs t)
473  '(js2-auto-indent-flag nil)
474  '(js2-basic-offset 4)
475  '(js2-indent-on-enter-key nil)
476  '(js2-mirror-mode nil)
477  '(js2-use-font-lock-faces t)
478  '(mew-field-spec (quote (("^Resent-\\(From\\|To\\|Cc\\|Date\\)" t mew-face-header-important mew-face-header-important) ("^Subject:$" t mew-face-header-important mew-face-header-subject) ("^From:$" t mew-face-header-important mew-face-header-from) ("^\\(To\\|Apparently-To\\):$" t mew-face-header-important mew-face-header-to) ("^\\(Cc\\|Dcc\\|Bcc\\):$" t mew-face-header-important mew-face-header-to) ("^Newsgroups:$" t mew-face-header-important mew-face-header-to) ("^Date:$" t mew-face-header-important mew-face-header-date) ("^Reply-To:$" t) ("^X-Mailer:$" t) ("^X-Mew:$" t mew-face-header-important mew-face-header-xmew) ("^\\(Received\\|Return-Path\\|Sender\\|Errors-To\\):$" nil) ("^\\(Path\\|Distribution\\|Xref\\):$" nil) ("^NNTP-Posting-" nil) ("^\\(Message-Id\\|Posted\\|In-Reply-To\\|References\\|Precedence\\):$" nil) ("^Delivered-" nil) ("^List-" nil) ("^\\(Mime-Version\\|Lines\\):$" nil) ("^From$" nil) ("^Status:$" nil) ("^Face:$" nil mew-face-header-private mew-face-header-marginal) ("^X-Text-Classification:$" t mew-face-header-important mew-face-header-important) ("^X-POPFile-Link:$" t mew-face-header-important mew-face-body-url) ("^\\(X\\|Original\\)-" nil mew-face-header-private mew-face-header-marginal))))
479  '(mew-refile-guess-alist (quote (("From:" ("noreply@adc1.apple.com" . "+mm/adc") ("mag2 ID 0000022139" . "+mm/2ch") ("noreply@sourceforge.net" . "+from/sf-net")) ("Subject:" ("w3m-dev" . "+ml/w3m-dev")) ("To:" ("glasgow-haskell-users@haskell.org" . "+ml/ghc-users") ("fink-devel@lists.sourceforge.net" . "+ml/fink-devel")) ("Reply-To:" ("yun@kokonoe.com" . "+mm/kokonoe")) ("Cc:" ("glasgow-haskell-users@haskell.org" . "+ml/ghc-users")))))
480  '(mew-scan-fields (quote ("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")))
481  '(mew-spam: "X-Text-Classification:")
482  '(mew-summary-form (quote (type (5 date) " " (14 from) " " t (14 x-classification) " " (30 subj) "|" (0 body))))
483  '(mouse-wheel-progessive-speed nil)
484  '(mouse-wheel-scroll-amount (quote (1 ((shift) . 5) ((control)))))
485  '(navi2ch-browse-url-browser-function (quote browse-url-firefox))
486  '(navi2ch-display-splash-screen nil)
487  '(navi2ch-list-moved-board-alist (quote (("http://mamono.2ch.net/ihou/" . "http://hideyoshi.2ch.net/ihou/"))))
488  '(navi2ch-mona-face-variable (quote navi2ch-mona12-face))
489  '(navi2ch-mona-on-message-mode t)
490  '(newsticker-html-renderer (quote w3m-region))
491  '(newsticker-url-list nil)
492  '(newsticker-url-list-defaults (quote (("slashdot" "http://slashdot.org/index.rss" nil 3600))))
493  '(nxml-auto-insert-xml-declaration-flag t)
494  '(nxml-slash-auto-complete-flag t)
495  '(rcirc-server-alist (quote (("irc1.ymir.jp" :nick "PHO`cons" nil nil))))
496  '(riece-layout "default")
497  '(riece-layout-alist (quote (("middle-right" riece-configure-windows right middle) ("middle-left" riece-configure-windows left middle) ("top-right" riece-configure-windows right top) ("top-left" riece-configure-windows left top) ("bottom-right" riece-configure-windows right bottom) ("bottom-left" riece-configure-windows left bottom) ("top" riece-configure-windows-top) ("spiral" riece-configure-windows-spiral) ("default" . "middle-right"))))
498  '(riece-others-buffer-mode nil)
499  '(rng-schema-locating-files (quote ("schemas.xml" "/sw/share/schema/schemas.xml" "~/share/nxml/schemas.xml")))
500  '(rst-level-face-base-light 50)
501  '(safe-local-variable-values (quote ((todo-categories "Todo" "Todo" "Todo" "Todo"))))
502  '(session-use-package t nil (session))
503  '(tramp-auto-save-directory "/tmp/tramp-auto-save")
504  '(tramp-completion-reread-directory-timeout 2)
505  '(tramp-default-host "localhost")
506  '(tramp-default-method "sshx")
507  '(w3m-bookmark-file-coding-system (quote utf-8))
508  '(w3m-coding-system (quote utf-8))
509  '(w3m-coding-system-priority-list (quote (utf-8)))
510  '(w3m-default-coding-system (quote utf-8))
511  '(w3m-default-display-inline-images t)
512  '(w3m-file-coding-system (quote utf-8))
513  '(w3m-file-name-coding-system (quote utf-8))
514  '(w3m-fill-column 80)
515  '(w3m-input-coding-system (quote utf-8))
516  '(w3m-key-binding nil)
517  '(w3m-output-coding-system (quote utf-8))
518  '(w3m-terminal-coding-system (quote utf-8))
519  '(w3m-use-cookies t)
520  '(x-select-enable-clipboard t))
521 (custom-set-faces
522   ;; custom-set-faces was added by Custom.
523   ;; If you edit it by hand, you could mess it up, so be careful.
524   ;; Your init file should contain only one such instance.
525   ;; If there is more than one, they won't work right.
526  '(flyspell-incorrect ((t (:foreground "OrangeRed" :overline t))))
527  '(jaspace-highlight-tab-face ((((class color) (background dark)) (:foreground "gray70" :underline t))))
528  '(navi2ch-bm-new-unread-face ((t (:foreground "PaleGreen" :weight bold))))
529  '(navi2ch-bm-updated-cache-face ((t (:foreground "CornflowerBlue" :weight bold))))
530  '(navi2ch-bm-updated-unread-face ((t (:foreground "DarkSeaGreen3" :weight bold))))
531  '(which-func-face ((t (:background "black" :foreground "dark orange")))))