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