]> 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 ;; CEDET
203 (add-to-list 'load-path "/usr/pkg/share/emacs/cedet/common")
204 (require-if-present 'cedet)
205
206 ;; ECB
207 (require-if-present 'ecb-autoloads)
208 (let* ((hosts '(("netbsd." .
209                  (("~/sandbox/yxmimeproc" "yxmimeproc")
210                   ("~/sandbox/YxMIME" "YxMIME.pm")
211                   ))
212                 ("g1.cuenote.jp" .
213                  (("~/sandbox/MR/engine/libycom" "libycom")
214                   ))
215                 ("aria.cielonegro.org" .
216                  (("~/sandbox/_web-app/Rakka"           "Rakka")
217                   ("~/sandbox/_haskell/Lucu"            "Lucu")
218                   ("~/sandbox/_web-app/Kirschbaum"      "Kirschbaum")
219                   ("~/sandbox/_haskell/HsOpenSSL"       "HsOpenSSL")
220                   ("~/sandbox/_haskell/HsHyperEstraier" "HsHyperEstraier")
221                   ("~/sandbox/_haskell/HsSVN"           "HsSVN")
222                   ("~/sandbox/_game/RoRo"               "RoRo")
223                   ("~/sandbox/_haskell/HXT"             "HXT")
224                   ("~/sandbox/_haskell/hxt-compile"     "hxt-compile")
225                   ("~/src/ghc-6.10.1"                   "ghc-6.10.1")
226                   ("~/sandbox/sugar"                    "sugar")
227                   ("~/sandbox/_haskell/dns"             "dns")
228                   ("~/sandbox/_haskell/blackboard-ddns" "blackboard-ddns")
229                   ))))
230        (paths (cdr (assoc (system-name) hosts))))
231   (setq ecb-source-path paths))
232
233 ;; leim
234 (require-if-present 'gaelic)
235
236 ;; rnc-mode
237 (autoload 'rnc-mode "rnc-mode")
238 (add-to-list 'auto-mode-alist '("\\.rnc\\'" . rnc-mode))
239
240 ;; bookmark
241 (setq bookmark-sort-flag nil)
242
243 ;; sudoku
244 (autoload 'sudoku "sudoku" "The Sudoku" t)
245
246 ;; mew
247 (autoload 'mew "mew" "Mew" t)
248
249 ;; cleite
250 (autoload 'cleite "cleite" "Cleite RSS Aggregator -- Emacs Interface" t)
251
252 ;; javascript
253 (autoload 'js2-mode "js2" nil t)
254 (add-to-list 'auto-mode-alist '("\\.js$" . js2-mode))
255
256 ;; ido
257 (require 'ido)
258 (ido-mode t)
259
260 ;; sokoban
261 (autoload 'sokoban "sokoban.el" "Start a new game of Sokoban." t)
262 (autoload 'sokoban-mode "sokoban.el" "Play Sokoban in current buffer." t)
263 (setq sokoban-playerfiles-dir "/usr/local/var/games/emacs-sokoban")
264
265 ;; nXML
266 (load-file-if-present "/usr/pkg/share/emacs/site-lisp/nxml-mode/rng-auto.el")
267 (defalias 'xml-mode 'nxml-mode)
268 (add-to-list 'auto-mode-alist '("\\.xml$" . nxml-mode))
269 (add-to-list 'auto-mode-alist '("\\.xi$" . nxml-mode))
270 (add-to-list 'auto-mode-alist '("\\.rdf$" . nxml-mode))
271 (add-to-list 'auto-mode-alist '("\\.rng$" . nxml-mode))
272
273 ;; sstp
274 (autoload 'sstp-mode "sstp" "SSTP Editing Major-Mode" t)
275
276 ;; ruby-mode
277 (autoload 'ruby-mode "ruby-mode" "Mode for editing ruby source files")
278 (setq auto-mode-alist
279       (append '(("\\.rb$" . ruby-mode)) auto-mode-alist))
280 (setq interpreter-mode-alist (append '(("ruby" .ruby-mode))
281                                      interpreter-mode-alist))
282 (autoload 'run-ruby "inf-ruby" "Run an inferior Ruby process")
283 (autoload 'inf-ruby-keys "inf-ruby" "set local key defs for inf-ruby in ruby-mode")
284 (add-hook 'ruby-mode-hook
285           '(lambda ()
286             (inf-ruby-keys)
287           ))
288
289 ;; Haskell
290 (load-if-present "haskell-site-file.el")
291
292 (autoload 'run-haskell "inf-haskell" "" t)
293 (autoload 'switch-to-haskell "inf-haskell" "" t)
294 (autoload 'inferior-haskell-load-file "inf-haskell" "" t)
295 (autoload 'inferior-haskell-type "inf-haskell" "" t)
296 (autoload 'inferior-haskell-info "inf-haskell" "" t)
297 (autoload 'inferior-haskell-find-definition "inf-haskell" "" t)
298 (autoload 'inferior-haskell-find-haddock "inf-haskell" "" t)
299
300 (add-to-list 'auto-mode-alist '("\\.hs$" . haskell-mode))
301 (add-to-list 'auto-mode-alist '("\\.hsc$" . haskell-mode))
302
303 (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
304 (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
305 (add-hook 'haskell-mode-hook 'turn-on-haskell-ghci)
306
307 (load-if-present "~/sandbox/_input-method/haskell-unicode-input-method/haskell-unicode-input-method")
308  (add-hook 'haskell-mode-hook
309    (lambda () (set-input-method "haskell-unicode")))
310
311
312 ;; Hoogle
313 (autoload 'hoogle-lookup "hoogle" "Hoogle" t)
314 (global-set-key (kbd "C-c h") 'hoogle-lookup)
315
316 ;; c-mode
317 (mapcar (lambda (hook)
318       (add-hook hook
319             (lambda () (c-set-style "user"))))
320     '(c-mode-hook
321       c++-mode-hook
322       objc-mode-hook
323       java-mode-hook))
324
325 ;; css
326 (autoload 'css-mode "css-mode" "For editing CSS file" t)
327 (setq cssm-indent-level 4)
328 (setq cssm-mirror-mode nil)
329 (setq cssm-indent-function 'cssm-c-style-indenter)
330 (setq auto-mode-alist
331       (append
332        '(("\\.css$" . css-mode))
333        auto-mode-alist))
334
335 ;; EmacsWiki
336 (autoload 'emacs-wiki-find-file "emacs-wiki" "Emacs Wiki" t)
337 (defalias 'wiki 'emacs-wiki-find-file)
338
339 ;; cperl
340 (defalias 'perl-mode 'cperl-mode)
341 (setq cperl-indent-level 4)
342 (setq cperl-indent-parens-as-block t)
343
344 ;; Erlang
345 (add-to-list 'load-path "/usr/pkg/lib/erlang/lib/tools-2.6/emacs")
346 (require-if-present 'erlang-start)
347 (setq erlang-electric-commands nil)
348
349 ;; SKK
350 (require 'skk-autoloads)
351 (require 'skk-study)
352 (global-set-key "\C-x\C-j" 'skk-mode)
353 (global-set-key "\C-xj" 'skk-auto-fill-mode)
354 (global-set-key "\C-xt" 'skk-tutorial)
355 (setq skk-use-jisx0201-input-method t)
356 (setq skk-rom-kana-rule-list
357       '(("@" nil "@")
358         ("wi" nil ("ヰ" . "ゐ"))
359         ("we" nil ("ヱ" . "ゑ"))
360         ;;("hh" "h" ("ン" . "ん"))
361         ;;("mm" "m" ("ン" . "ん"))
362         ("zx" nil ("ゝ" . "ヽ"))
363         ("zc" nil ("ゞ" . "ヾ"))))
364 (set-input-method 'japanese-skk) ; INPUT METHOD
365
366 ;; navi2ch
367 (autoload 'navi2ch "navi2ch" "Navigator for 2ch for Emacs" t)
368
369 ;; migemo
370 (require-if-present 'migemo)
371
372 ;; tiarra-conf
373 (setq load-path (cons (expand-file-name "~/sandbox/Tiarra") load-path))
374 (autoload 'tiarra-conf-mode "tiarra-conf" "tiarra.conf editing mode" t)
375
376 ;; po-mode
377 (autoload 'po-mode "po-mode")
378 (setq auto-mode-alist
379       (cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode)
380             auto-mode-alist))
381
382 ;; ChangeLog
383 (setq user-full-name "PHO")
384 (setq user-mail-address "pho@cielonegro.org")
385
386 (defun memo ()
387   (interactive)
388   (add-change-log-entry nil (expand-file-name "~/sync/memo.txt")))
389 (define-key ctl-x-map "MM" #'memo)
390
391 (defun depression ()
392   (interactive)
393   (add-change-log-entry nil (expand-file-name "~/sync/depression.txt")))
394 (define-key ctl-x-map "MD" #'depression)
395
396 (defun plant ()
397   (interactive)
398   (add-change-log-entry nil (expand-file-name "~/sync/plant.txt")))
399 (define-key ctl-x-map "MP" #'plant)
400
401 (defun robinson ()
402   (interactive)
403   (elscreen-create)
404   (find-file (expand-file-name "~/sync/good-things.txt"))
405   (split-window-horizontally)
406   (next-window)
407   (find-file (expand-file-name "~/sync/bad-things.txt"))
408   (next-window))
409 (define-key ctl-x-map "MR" #'robinson)
410
411 ;; Emacs Calc
412 (add-hook 'calc-start-hook
413           (lambda ()
414             (if (functionp 'paren-deactivate)
415                 (paren-deactivate))))
416 (add-hook 'calc-end-hook
417           (lambda ()
418             (if (functionp 'paren-activate)
419                 (paren-activate))))
420
421 ;;; emacs-w3m
422 (autoload 'w3m "w3m" "Interface for w3m on Emacs." t)
423 (autoload 'w3m-browse-url "w3m" "Browse url by w3m." t)
424 (autoload 'w3m-find-file "w3m" "w3m interface function for local file." t)
425 (autoload 'w3m-search "w3m-search" "Search QUERY using SEARCH-ENGINE." t)
426 (autoload 'w3m-weather "w3m-weather" "Display weather report." t)
427 (autoload 'w3m-antenna "w3m-antenna" "Report chenge of WEB sites." t)
428 (autoload 'w3m-namazu "w3m-namazu" "Search files with Namazu." t)
429
430 ;; pov-mode
431 (autoload 'pov-mode "pov-mode" "POV-Ray scene file mode" t)
432 (setq auto-mode-alist
433       (append '(("\\.pov$" . pov-mode)
434                 ("\\.inc$" . pov-mode)
435                 ) auto-mode-alist))
436
437 ;; End of user configuration ---------------------------------------------------
438
439 ;; emacs auto edit
440 (put 'narrow-to-region 'disabled nil)
441 (custom-set-variables
442   ;; custom-set-variables was added by Custom.
443   ;; If you edit it by hand, you could mess it up, so be careful.
444   ;; Your init file should contain only one such instance.
445   ;; If there is more than one, they won't work right.
446  '(Info-additional-directory-list (quote ("/sw/share/info" "/usr/local/info" "/usr/local/share/info")))
447  '(ac-ignore-case nil)
448  '(appt-display-format (quote window))
449  '(appt-message-warning-time 20)
450  '(canlock-password "a14fa4d2601465d55585c291fa8b3943e189e716")
451  '(cleite:auto-refresh-interval nil)
452  '(cleite:measure-srpc-call-time t)
453  '(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")))
454  '(cperl-merge-trailing-else nil)
455  '(default-frame-alist (quote ((tool-bar-lines . 0) (menu-bar-lines . 1) (width . 80) (height . 25) (right-fringe) (left-fringe))))
456  '(ditz-find-issue-directory-automatically-flag t)
457  '(ecb-add-path-for-not-matching-files (quote (t)))
458  '(ecb-help-info-path "/sw/share/info/ecb.info")
459  '(ecb-layout-name "left14")
460  '(ecb-options-version "2.40")
461  '(ecb-show-sources-in-directories-buffer (quote always))
462  '(ecb-tip-of-the-day nil)
463  '(ecb-tree-buffer-style (quote ascii-guides))
464  '(ecb-windows-width 0.2)
465  '(elscreen-display-tab t)
466  '(haskell-program-name "ghci")
467  '(ido-enable-flex-matching t)
468  '(ido-everywhere t)
469  '(ido-ignore-files (quote ("\\`CVS/" "\\`#" "\\`.#" "\\`\\.\\./" "\\`\\./" "\\.ttc")))
470  '(ido-work-directory-list-ignore-regexps (quote ("^\\(/mnt/ibm/\\|/Volumes/IBM80GB/\\)")))
471  '(indent-tabs-mode nil)
472  '(jabber-nickname "PHO")
473  '(jabber-resource "emacs")
474  '(jabber-server "jabber.jp")
475  '(jabber-username "phonohawk")
476  '(jaspace-highlight-tabs t)
477  '(js2-auto-indent-flag nil)
478  '(js2-basic-offset 4)
479  '(js2-indent-on-enter-key nil)
480  '(js2-mirror-mode nil)
481  '(js2-use-font-lock-faces t)
482  '(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))))
483  '(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")))))
484  '(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")))
485  '(mew-spam: "X-Text-Classification:")
486  '(mew-summary-form (quote (type (5 date) " " (14 from) " " t (14 x-classification) " " (30 subj) "|" (0 body))))
487  '(mouse-wheel-progessive-speed nil)
488  '(mouse-wheel-scroll-amount (quote (1 ((shift) . 5) ((control)))))
489  '(navi2ch-browse-url-browser-function (quote browse-url-firefox))
490  '(navi2ch-display-splash-screen nil)
491  '(navi2ch-list-moved-board-alist (quote (("http://mamono.2ch.net/ihou/" . "http://hideyoshi.2ch.net/ihou/"))))
492  '(navi2ch-mona-face-variable (quote navi2ch-mona12-face))
493  '(navi2ch-mona-on-message-mode t)
494  '(newsticker-html-renderer (quote w3m-region))
495  '(newsticker-url-list nil)
496  '(newsticker-url-list-defaults (quote (("slashdot" "http://slashdot.org/index.rss" nil 3600))))
497  '(nxml-auto-insert-xml-declaration-flag t)
498  '(nxml-slash-auto-complete-flag t)
499  '(rcirc-server-alist (quote (("irc1.ymir.jp" :nick "PHO`cons" nil nil))))
500  '(riece-layout "default")
501  '(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"))))
502  '(riece-others-buffer-mode nil)
503  '(rng-schema-locating-files (quote ("schemas.xml" "/sw/share/schema/schemas.xml" "~/share/nxml/schemas.xml")))
504  '(rst-level-face-base-light 50)
505  '(safe-local-variable-values (quote ((todo-categories "Todo" "Todo" "Todo" "Todo"))))
506  '(session-use-package t nil (session))
507  '(tramp-auto-save-directory "/tmp/tramp-auto-save")
508  '(tramp-completion-reread-directory-timeout 2)
509  '(tramp-default-host "localhost")
510  '(tramp-default-method "sshx")
511  '(w3m-bookmark-file-coding-system (quote utf-8))
512  '(w3m-coding-system (quote utf-8))
513  '(w3m-coding-system-priority-list (quote (utf-8)))
514  '(w3m-default-coding-system (quote utf-8))
515  '(w3m-default-display-inline-images t)
516  '(w3m-file-coding-system (quote utf-8))
517  '(w3m-file-name-coding-system (quote utf-8))
518  '(w3m-fill-column 80)
519  '(w3m-input-coding-system (quote utf-8))
520  '(w3m-key-binding nil)
521  '(w3m-output-coding-system (quote utf-8))
522  '(w3m-terminal-coding-system (quote utf-8))
523  '(w3m-use-cookies t)
524  '(x-select-enable-clipboard t))
525 (custom-set-faces
526   ;; custom-set-faces was added by Custom.
527   ;; If you edit it by hand, you could mess it up, so be careful.
528   ;; Your init file should contain only one such instance.
529   ;; If there is more than one, they won't work right.
530  '(flyspell-incorrect ((t (:foreground "OrangeRed" :overline t))))
531  '(jaspace-highlight-tab-face ((((class color) (background dark)) (:foreground "gray70" :underline t))))
532  '(navi2ch-bm-new-unread-face ((t (:foreground "PaleGreen" :weight bold))))
533  '(navi2ch-bm-updated-cache-face ((t (:foreground "CornflowerBlue" :weight bold))))
534  '(navi2ch-bm-updated-unread-face ((t (:foreground "DarkSeaGreen3" :weight bold))))
535  '(which-func-face ((t (:background "black" :foreground "dark orange")))))