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