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