1 ;; -*- Mode: emacs-lisp; Coding: utf-8 -*-
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")
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)
15 ;; Settings for the Emacs itself ----------------------------------------------
16 (setq truncate-partial-width-windows t)
17 (setq make-backup-files nil)
19 (setq read-file-name-completion-ignore-case t)
22 (global-set-key (kbd "C-\\" ) 'toggle-input-method)
23 (global-set-key (kbd "C-RET") 'completion-at-point)
26 (normal-erase-is-backspace-mode t))
28 (setq-default tab-width 4)
29 (global-font-lock-mode t)
31 (auto-compression-mode t)
32 (which-function-mode t)
34 (setq ring-bell-function (lambda ()))
37 (if (server-running-p)
38 (message "Warning: server %S is already running." server-name)
42 (windmove-default-keybindings)
44 ;; Host specific configuration ------------------------------------------------
45 (let ((host (system-name)))
46 (cond ((equal host "aria.cielonegro.org")
48 ;; Use firefox as the default browser.
49 (setq browse-url-firefox-program "/opt/local/bin/firefox")
50 ;; Specify how to connect to some of the remote servers.
51 (setq tramp-default-proxies-alist nil)
52 (mapcar #'(lambda (proxy)
53 (add-to-list 'tramp-default-proxies-alist proxy))
54 '( ("rd8" nil "/sshx:pho@yebisu1.ymir.jp:")
55 ("pho\\.dev\\.office\\.ymir\\.co\\.jp" nil "/sshx:pho@yebisu1.ymir.jp:")
56 ("yebisu1\\.ymir\\.jp" nil "/sshx:pho@boss:" )
59 ;; Settings for Browser --------------------------------------------------------
60 (setq browse-url-browser-function 'w3m-browse-url)
61 (global-set-key "\C-xm" 'browse-url-at-point)
63 ;; Setting for the Mode Line ---------------------------------------------------
65 (column-number-mode t)
68 ;; Setting for Frames ----------------------------------------------------------
70 (if (equal (system-name) "seras")
71 (set-default-font "Dejavu Sans Mono 11")
72 (set-default-font "Dejavu Sans Mono 13")))
75 ; (set-default-font "Inconsolata-14")
76 ; (set-face-font 'variable-pitch "Inconsolata-14")
77 ; (set-fontset-font (frame-parameter nil 'font)
79 ; '("Takaoゴシック" . "unicode-bmp")))
82 ; (add-to-list 'default-frame-alist
83 ; '(font . "Bitstream Vera Sans Mono 12"))
84 ; (set-frame-font "Bitstream Vera Sans Mono 12")
85 ; (set-fontset-font nil;(frame-parameter nil 'font)
87 ; '("Hiragino Kaku Gothic Pro W3" . "unicode-bmp")))
89 ;; Hooks for newline-and-indent ------------------------------------------------
90 ;(mapcar (lambda (hook)
93 ; (local-set-key "\C-m" 'newline-and-indent)
94 ; (local-set-key "\C-j" 'newline)
99 ; javascript-mode-hook
103 ; emacs-lisp-mode-hook
109 ;; Setting for Packages --------------------------------------------------------
110 (defun require-if-present (feature)
114 (if (equal (cadr e) "Cannot open load file")
115 (message "Warning: feature %s is absent" feature) ; warn and ignore
116 (apply 'signal (car e) (cdr e)))))) ; rethrow
118 (defun load-if-present (file)
122 (if (equal (cadr e) "Cannot open load file")
123 (message "Warning: file named %s is absent" file) ; warn and ignore
124 (apply 'signal (car e) (cdr e)))))) ; rethrow
126 (defun load-file-if-present (path)
127 (if (file-exists-p path)
129 (message "Warning: file %s is absent" path)))
132 (require-if-present 'session)
135 (require-if-present 'flyspell)
138 (require-if-present 'ditz)
141 (require-if-present 'mediawiki)
144 (require-if-present 'jaspace)
147 (require-if-present 'color-theme)
148 (if (featurep 'color-theme)
150 (color-theme-initialize)
151 (color-theme-subtle-hacker)))
154 (require-if-present 'auto-complete-config)
155 (if (featurep 'auto-complete-config)
157 (add-to-list 'ac-dictionary-directories
158 "/usr/pkg/share/emacs/site-lisp/auto-complete/ac-dict")
159 (mapcar (lambda (mode)
160 (add-to-list 'ac-modes mode))
164 (setq ac-modes (remove 'css-mode ac-modes))
165 (add-hook 'erlang-mode-hook
167 (add-to-list 'ac-sources 'ac-source-semantic)))
168 (ac-config-default)))
171 (require-if-present 'mic-paren)
172 (if (featurep 'mic-paren)
176 (load "elscreen" "ElScreen" t)
178 (require-if-present 'elscreen-w3m)
181 (require-if-present 'undo-tree)
182 (if (featurep 'undo-tree)
183 (global-undo-tree-mode))
186 ;(require-if-present 'mpc-autoloads)
189 (autoload 'rst-mode "rst"
190 "mode for editing reStructuredText documents" t)
191 (setq auto-mode-alist
192 (append '(("\\.rst$" . rst-mode)
193 ("\\.rest$" . rst-mode)) auto-mode-alist))
196 (autoload 'textile-mode "textile-mode"
197 "Major mode for editing Textile documents." t)
198 (add-to-list 'auto-mode-alist '("\\.textile\\'" . textile-mode))
201 (autoload 'xsltxt-mode "xsltxt-mode" "Major mode for xsltxt." t)
202 (add-to-list 'auto-mode-alist '("\\.xsltxt$" . xsltxt-mode))
205 (autoload 'lua-mode "lua-mode" "Lua editing mode." t)
206 (add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode))
209 (require-if-present 'twittering-mode)
210 (setq twittering-username "phonohawk")
213 (autoload 'riece "riece" "Start Riece" t)
214 (add-hook 'riece-after-load-startup-hook
216 (add-to-list 'riece-addons 'riece-alias)
217 (add-to-list 'riece-addons 'riece-skk-kakutei)
218 (add-to-list 'riece-addons 'riece-keyword)
219 (add-to-list 'riece-addons 'riece-ctlseq)))
222 (add-to-list 'load-path "/usr/pkg/share/emacs/cedet/common")
223 (require-if-present 'cedet)
226 (require-if-present 'ecb-autoloads)
227 (let* ((hosts '(("netbsd." .
228 (("~/sandbox/yxmimeproc" "yxmimeproc")
229 ("~/sandbox/YxMIME" "YxMIME.pm")
232 (("~/sandbox/MR/engine/libycom" "libycom")
234 ("aria.cielonegro.org" .
235 (("~/sandbox/_web-app/Rakka" "Rakka")
236 ("~/sandbox/_haskell/Lucu" "Lucu")
237 ("~/sandbox/_web-app/Kirschbaum" "Kirschbaum")
238 ("~/sandbox/_haskell/HsOpenSSL" "HsOpenSSL")
239 ("~/sandbox/_haskell/HsHyperEstraier" "HsHyperEstraier")
240 ("~/sandbox/_haskell/HsSVN" "HsSVN")
241 ("~/sandbox/_game/RoRo" "RoRo")
242 ("~/sandbox/_haskell/HXT" "HXT")
243 ("~/sandbox/_haskell/hxt-compile" "hxt-compile")
244 ("~/src/ghc-6.10.1" "ghc-6.10.1")
245 ("~/sandbox/sugar" "sugar")
246 ("~/sandbox/_haskell/dns" "dns")
247 ("~/sandbox/_haskell/blackboard-ddns" "blackboard-ddns")
249 (paths (cdr (assoc (system-name) hosts))))
250 (setq ecb-source-path paths))
253 (require-if-present 'gaelic)
256 (autoload 'rnc-mode "rnc-mode")
257 (add-to-list 'auto-mode-alist '("\\.rnc\\'" . rnc-mode))
260 (setq bookmark-sort-flag nil)
263 (autoload 'sudoku "sudoku" "The Sudoku" t)
266 (autoload 'mew "mew" "Mew" t)
269 (autoload 'cleite "cleite" "Cleite RSS Aggregator -- Emacs Interface" t)
272 (autoload 'js2-mode "js2" nil t)
273 (add-to-list 'auto-mode-alist '("\\.js$" . js2-mode))
274 (add-to-list 'auto-mode-alist '("\\.json$" . javascript-mode))
277 (autoload 'vimrc-mode "vimrc-mode"
278 "Major mode for editing `.vimrc', `xxx.vim' and `.exrc' files." t)
279 (add-to-list 'auto-mode-alist '("\\.vim\\(rc\\)?$" . vimrc-mode))
286 (autoload 'sokoban "sokoban.el" "Start a new game of Sokoban." t)
287 (autoload 'sokoban-mode "sokoban.el" "Play Sokoban in current buffer." t)
288 (setq sokoban-playerfiles-dir "/usr/local/var/games/emacs-sokoban")
291 (load-file-if-present "/usr/pkg/share/emacs/site-lisp/nxml-mode/rng-auto.el")
292 (defalias 'xml-mode 'nxml-mode)
293 (add-to-list 'auto-mode-alist '("\\.xml$" . nxml-mode))
294 (add-to-list 'auto-mode-alist '("\\.xi$" . nxml-mode))
295 (add-to-list 'auto-mode-alist '("\\.rdf$" . nxml-mode))
296 (add-to-list 'auto-mode-alist '("\\.rng$" . nxml-mode))
299 (autoload 'sstp-mode "sstp" "SSTP Editing Major-Mode" t)
302 (autoload 'ruby-mode "ruby-mode" "Mode for editing ruby source files")
303 (setq auto-mode-alist
304 (append '(("\\.rb$" . ruby-mode)) auto-mode-alist))
305 (setq interpreter-mode-alist (append '(("ruby" .ruby-mode))
306 interpreter-mode-alist))
307 (autoload 'run-ruby "inf-ruby" "Run an inferior Ruby process")
308 (autoload 'inf-ruby-keys "inf-ruby" "set local key defs for inf-ruby in ruby-mode")
309 (add-hook 'ruby-mode-hook
315 (load-if-present "haskell-site-file.el")
317 (autoload 'run-haskell "inf-haskell" "" t)
318 (autoload 'switch-to-haskell "inf-haskell" "" t)
319 (autoload 'inferior-haskell-load-file "inf-haskell" "" t)
320 (autoload 'inferior-haskell-type "inf-haskell" "" t)
321 (autoload 'inferior-haskell-info "inf-haskell" "" t)
322 (autoload 'inferior-haskell-find-definition "inf-haskell" "" t)
323 (autoload 'inferior-haskell-find-haddock "inf-haskell" "" t)
325 (add-to-list 'auto-mode-alist '("\\.hs$" . haskell-mode))
326 (add-to-list 'auto-mode-alist '("\\.hsc$" . haskell-mode))
328 (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
329 (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
330 (add-hook 'haskell-mode-hook 'turn-on-haskell-ghci)
332 (load-if-present "~/sandbox/_input-method/haskell-unicode-input-method/haskell-unicode-input-method")
333 (add-hook 'haskell-mode-hook
334 (lambda () (set-input-method "haskell-unicode")))
337 (autoload 'hoogle-lookup "hoogle" "Hoogle" t)
338 (global-set-key (kbd "C-c h") 'hoogle-lookup)
341 (mapcar (lambda (hook)
343 (lambda () (c-set-style "user"))))
350 (autoload 'emacs-wiki-find-file "emacs-wiki" "Emacs Wiki" t)
351 (defalias 'wiki 'emacs-wiki-find-file)
354 (defalias 'perl-mode 'cperl-mode)
355 (setq cperl-indent-level 4)
356 (setq cperl-indent-parens-as-block t)
359 (require-if-present 'erlang-start)
360 (setq erlang-electric-commands nil)
363 (require 'skk-autoloads)
365 (global-set-key "\C-x\C-j" 'skk-mode)
366 (global-set-key "\C-xj" 'skk-auto-fill-mode)
367 (global-set-key "\C-xt" 'skk-tutorial)
368 (setq skk-use-jisx0201-input-method t)
369 (setq skk-rom-kana-rule-list
371 ("wi" nil ("ヰ" . "ゐ"))
372 ("we" nil ("ヱ" . "ゑ"))
373 ;;("hh" "h" ("ン" . "ん"))
374 ;;("mm" "m" ("ン" . "ん"))
375 ("zx" nil ("ゝ" . "ヽ"))
376 ("zc" nil ("ゞ" . "ヾ"))))
377 (set-input-method 'japanese-skk) ; INPUT METHOD
380 (autoload 'navi2ch "navi2ch" "Navigator for 2ch for Emacs" t)
383 (require-if-present 'migemo)
384 (setq migemo-isearch-enable-p nil)
387 (setq load-path (cons (expand-file-name "~/sandbox/Tiarra") load-path))
388 (autoload 'tiarra-conf-mode "tiarra-conf" "tiarra.conf editing mode" t)
391 (autoload 'po-mode "po-mode")
392 (setq auto-mode-alist
393 (cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode)
397 (autoload 'csv-mode "csv-mode"
398 "Major mode for editing comma-separated value files." t)
399 (add-to-list 'auto-mode-alist '("\\.[Cc][Ss][Vv]\\'" . csv-mode))
402 (autoload 'yaml-mode "yaml-mode"
403 "Major mode for editing YAML files." t)
404 (add-to-list 'auto-mode-alist '("\\.ya?ml$" . yaml-mode))
407 (if (equal (system-name) "seras")
409 (defun edit-troublesome-tasks ()
412 (find-file (expand-file-name "~/var/troublesome-tasks.txt")))
413 (define-key ctl-x-map "MT" #'edit-troublesome-tasks)))
416 (setq user-full-name "PHO")
417 (setq user-mail-address "pho@cielonegro.org")
421 (add-change-log-entry nil (expand-file-name "~/sync/memo.txt")))
422 (define-key ctl-x-map "MM" #'memo)
426 (add-change-log-entry nil (expand-file-name "~/sync/depression.txt")))
427 (define-key ctl-x-map "MD" #'depression)
431 (add-change-log-entry nil (expand-file-name "~/sync/plant.txt")))
432 (define-key ctl-x-map "MP" #'plant)
437 (find-file (expand-file-name "~/sync/good-things.txt"))
438 (split-window-horizontally)
440 (find-file (expand-file-name "~/sync/bad-things.txt"))
442 (define-key ctl-x-map "MR" #'robinson)
445 (add-hook 'calc-start-hook
447 (if (functionp 'paren-deactivate)
448 (paren-deactivate))))
449 (add-hook 'calc-end-hook
451 (if (functionp 'paren-activate)
455 (autoload 'w3m "w3m" "Interface for w3m on Emacs." t)
456 (autoload 'w3m-browse-url "w3m" "Browse url by w3m." t)
457 (autoload 'w3m-find-file "w3m" "w3m interface function for local file." t)
458 (autoload 'w3m-search "w3m-search" "Search QUERY using SEARCH-ENGINE." t)
459 (autoload 'w3m-weather "w3m-weather" "Display weather report." t)
460 (autoload 'w3m-antenna "w3m-antenna" "Report chenge of WEB sites." t)
461 (autoload 'w3m-namazu "w3m-namazu" "Search files with Namazu." t)
464 (autoload 'pov-mode "pov-mode" "POV-Ray scene file mode" t)
465 (setq auto-mode-alist
466 (append '(("\\.pov$" . pov-mode)
467 ("\\.inc$" . pov-mode)
470 ;; End of user configuration ---------------------------------------------------
473 (put 'narrow-to-region 'disabled nil)
474 (custom-set-variables
475 ;; custom-set-variables was added by Custom.
476 ;; If you edit it by hand, you could mess it up, so be careful.
477 ;; Your init file should contain only one such instance.
478 ;; If there is more than one, they won't work right.
479 '(Info-additional-directory-list (quote ("/sw/share/info" "/usr/local/info" "/usr/local/share/info")))
480 '(ac-ignore-case nil)
481 '(appt-display-format (quote window))
482 '(appt-message-warning-time 20)
483 '(canlock-password "a14fa4d2601465d55585c291fa8b3943e189e716")
484 '(cleite:auto-refresh-interval nil)
485 '(cleite:measure-srpc-call-time t)
486 '(compilation-scroll-output (quote first-error))
487 '(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")))
488 '(cperl-merge-trailing-else nil)
489 '(csv-align-style (quote auto))
490 '(default-frame-alist (quote ((tool-bar-lines . 0) (menu-bar-lines . 1) (width . 80) (height . 25) (right-fringe) (left-fringe))))
491 '(ditz-find-issue-directory-automatically-flag t)
492 '(ecb-add-path-for-not-matching-files (quote (t)))
493 '(ecb-help-info-path "/sw/share/info/ecb.info")
494 '(ecb-layout-name "left14")
495 '(ecb-options-version "2.32")
496 '(ecb-show-sources-in-directories-buffer (quote always))
497 '(ecb-tip-of-the-day nil)
498 '(ecb-tree-buffer-style (quote ascii-guides))
499 '(ecb-windows-width 0.2)
500 '(elscreen-display-tab t)
501 '(haskell-program-name "ghci")
502 '(ido-enable-flex-matching t)
504 '(ido-ignore-files (quote ("\\`CVS/" "\\`#" "\\`.#" "\\`\\.\\./" "\\`\\./" "\\.ttc")))
505 '(ido-work-directory-list-ignore-regexps (quote ("^\\(/mnt/ibm/\\|/Volumes/IBM80GB/\\)")))
506 '(indent-tabs-mode nil)
507 '(jabber-nickname "PHO")
508 '(jabber-resource "emacs")
509 '(jabber-server "jabber.jp")
510 '(jabber-username "phonohawk")
511 '(jaspace-highlight-tabs t)
512 '(js2-auto-indent-flag nil)
513 '(js2-basic-offset 4)
514 '(js2-indent-on-enter-key nil)
515 '(js2-mirror-mode nil)
516 '(js2-use-font-lock-faces t)
517 '(mediawiki-site-alist (quote (("Wikipedia" "http://en.wikipedia.org/w/" "username" "password" "Main Page") ("YmirDev" "https://ymirlink:santamo@update.forcast.jp/fcdiv/mwiki/" "PHO" "" "メインページ"))))
518 '(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))))
519 '(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")))))
520 '(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")))
521 '(mew-spam: "X-Text-Classification:")
522 '(mew-summary-form (quote (type (5 date) " " (14 from) " " t (14 x-classification) " " (30 subj) "|" (0 body))))
523 '(mouse-wheel-progessive-speed nil)
524 '(mouse-wheel-scroll-amount (quote (1 ((shift) . 5) ((control)))))
525 '(navi2ch-browse-url-browser-function (quote browse-url-firefox))
526 '(navi2ch-display-splash-screen nil)
527 '(navi2ch-list-moved-board-alist (quote (("http://mamono.2ch.net/ihou/" . "http://hideyoshi.2ch.net/ihou/"))))
528 '(navi2ch-mona-face-variable (quote navi2ch-mona12-face))
529 '(navi2ch-mona-on-message-mode t)
530 '(newsticker-html-renderer (quote w3m-region))
531 '(newsticker-url-list nil)
532 '(newsticker-url-list-defaults (quote (("slashdot" "http://slashdot.org/index.rss" nil 3600))))
533 '(nxml-auto-insert-xml-declaration-flag t)
534 '(nxml-slash-auto-complete-flag t)
535 '(org-replace-disputed-keys t)
536 '(rcirc-server-alist (quote (("irc1.ymir.jp" :nick "PHO`cons" nil nil))))
537 '(riece-layout "default")
538 '(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"))))
539 '(riece-others-buffer-mode nil)
540 '(rng-schema-locating-files (quote ("schemas.xml" "~/share/nxml/schemas.xml" "/usr/pkg/share/emacs/site-lisp/nxml-mode/schema/schemas.xml")))
541 '(rst-level-face-base-light 50)
542 '(safe-local-variable-values (quote ((todo-categories "Todo" "Todo" "Todo" "Todo"))))
543 '(session-use-package t nil (session))
544 '(tramp-auto-save-directory "/tmp/tramp-auto-save")
545 '(tramp-completion-reread-directory-timeout 2)
546 '(tramp-default-host "localhost")
547 '(tramp-default-method "sshx")
548 '(uniquify-buffer-name-style (quote forward) nil (uniquify))
549 '(uniquify-trailing-separator-p t)
550 '(w3m-bookmark-file-coding-system (quote utf-8))
551 '(w3m-coding-system (quote utf-8))
552 '(w3m-coding-system-priority-list (quote (utf-8)))
553 '(w3m-default-coding-system (quote utf-8))
554 '(w3m-default-display-inline-images t)
555 '(w3m-file-coding-system (quote utf-8))
556 '(w3m-file-name-coding-system (quote utf-8))
557 '(w3m-fill-column 80)
558 '(w3m-input-coding-system (quote utf-8))
559 '(w3m-key-binding nil)
560 '(w3m-output-coding-system (quote utf-8))
561 '(w3m-terminal-coding-system (quote utf-8))
563 '(whitespace-style (quote (face tabs trailing lines-tail space-before-tab newline indentation empty space-after-tab tab-mark)))
564 '(woman-cache-filename "~/.wmncach.el")
565 '(x-select-enable-clipboard t))
567 ;; custom-set-faces was added by Custom.
568 ;; If you edit it by hand, you could mess it up, so be careful.
569 ;; Your init file should contain only one such instance.
570 ;; If there is more than one, they won't work right.
571 '(diff-added ((t (:inherit diff-changed :foreground "medium spring green" :weight extra-bold))))
572 '(diff-removed ((t (:foreground "gold3" :weight extra-bold))))
573 '(flyspell-incorrect ((t (:foreground "OrangeRed" :overline t))))
574 '(jaspace-highlight-tab-face ((((class color) (background dark)) (:foreground "gray70" :underline t))))
575 '(navi2ch-bm-new-unread-face ((t (:foreground "PaleGreen" :weight bold))))
576 '(navi2ch-bm-updated-cache-face ((t (:foreground "CornflowerBlue" :weight bold))))
577 '(navi2ch-bm-updated-unread-face ((t (:foreground "DarkSeaGreen3" :weight bold))))
578 '(textile-link-face ((t (:foreground "cyan"))))
579 '(textile-ol-bullet-face ((t (:foreground "dark orange"))))
580 '(textile-ul-bullet-face ((t (:foreground "deep sky blue"))))
581 '(which-func-face ((t (:background "black" :foreground "dark orange"))))
582 '(whitespace-indentation ((t (:foreground "dimgray" :underline t))))
583 '(whitespace-line ((t (:background "gray20")))))