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