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