]> gitweb @ CieloNegro.org - sugar.git/blobdiff - dot-files/_emacs_el
Auto commit by The Sugar System.
[sugar.git] / dot-files / _emacs_el
index 626b907759fcb39473c5022cce22a95f27088fae..39919930d653d25b0eb7e2154e129bf89a630404 100644 (file)
@@ -1,11 +1,17 @@
 ;; -*- Mode: emacs-lisp; Coding: utf-8 -*-
 
+;; Added by Package.el.  This must come before configurations of
+;; installed packages.  Don't delete this line.  If you don't want it,
+;; just comment it out by adding a semicolon to the start of the line.
+;; You may delete these explanatory comments.
+(package-initialize)
+
 ;; Load paths -----------------------------------------------------------------
 (add-to-list 'load-path (expand-file-name "~/.elisp"))
 (add-to-list 'load-path "/usr/local/share/emacs/site-lisp")
 
 ;; Setting for encodings of the environment -----------------------------------
-;(set-language-environment 'Japanese)
+(set-locale-environment "en_US.UTF-8")
 (set-default-coding-systems 'utf-8)
 (set-terminal-coding-system 'utf-8)
 (setq default-file-name-coding-system 'utf-8)
@@ -21,6 +27,7 @@
 
 (global-set-key (kbd "C-\\" ) 'toggle-input-method)
 (global-set-key (kbd "C-RET") 'completion-at-point)
+(global-set-key (kbd "C-<return>") 'completion-at-point)
 
 (unless window-system
   (normal-erase-is-backspace-mode t))
 ;; windmove
 (windmove-default-keybindings)
 
+;; file renaming
+;; Originally from stevey, adapted to support moving to a new directory.
+(defun rename-file-and-buffer (new-name)
+  "Renames both current buffer and file it's visiting to NEW-NAME."
+  (interactive
+   (progn
+     (if (not (buffer-file-name))
+         (error "Buffer '%s' is not visiting a file!" (buffer-name)))
+     ;; Disable ido auto merge since it too frequently jumps back to the original
+     ;; file name if you pause while typing. Reenable with C-z C-z in the prompt.
+     (let ((ido-auto-merge-work-directories-length -1))
+       (list (read-file-name (format "Rename %s to: " (file-name-nondirectory
+                                                       (buffer-file-name))))))))
+  (if (equal new-name "")
+      (error "Aborted rename"))
+  (setq new-name (if (file-directory-p new-name)
+                     (expand-file-name (file-name-nondirectory
+                                        (buffer-file-name))
+                                       new-name)
+                   (expand-file-name new-name)))
+  ;; Only rename if the file was saved before. Update the
+  ;; buffer name and visited file in all cases.
+  (if (file-exists-p (buffer-file-name))
+      (rename-file (buffer-file-name) new-name 1))
+  (let ((was-modified (buffer-modified-p)))
+    ;; This also renames the buffer, and works with uniquify
+    (set-visited-file-name new-name)
+    (if was-modified
+        (save-buffer)
+      ;; Clear buffer-modified flag caused by set-visited-file-name
+      (set-buffer-modified-p nil)))
+
+  (setq default-directory (file-name-directory new-name))
+
+  (message "Renamed to %s." new-name))
+
 ;; Host specific configuration ------------------------------------------------
 (let ((host (system-name)))
   (cond ((equal host "aria.cielonegro.org")
          (progn
            ;; Use firefox as the default browser.
-           (setq browse-url-firefox-program "/opt/local/bin/firefox")
+           (setq browse-url-firefox-program "/usr/pkg/bin/firefox")
            ;; Specify how to connect to some of the remote servers.
            (setq tramp-default-proxies-alist nil)
            (mapcar #'(lambda (proxy)
@@ -56,7 +99,6 @@
                ))))))
 
 ;; Settings for Browser --------------------------------------------------------
-(setq browse-url-browser-function 'w3m-browse-url)
 (global-set-key "\C-xm" 'browse-url-at-point)
 
 ;; Setting for the Mode Line ---------------------------------------------------
 
 ;; Setting for Frames ----------------------------------------------------------
 (when window-system
-  (if (equal (system-name) "seras")
-      (set-default-font "Dejavu Sans Mono 11")
-    (set-default-font "Dejavu Sans Mono 13")))
-
-;(when window-system
-;  (set-default-font "Inconsolata-14")
-;  (set-face-font 'variable-pitch "Inconsolata-14")
-;  (set-fontset-font (frame-parameter nil 'font)
-;                    'japanese-jisx0208
-;                    '("Takaoゴシック" . "unicode-bmp")))
-
-;(when window-system
-;  (add-to-list 'default-frame-alist
-;               '(font . "Bitstream Vera Sans Mono 12"))
-;  (set-frame-font "Bitstream Vera Sans Mono 12")
-;  (set-fontset-font nil;(frame-parameter nil 'font)
-;                    'japanese-jisx0208
-;                    '("Hiragino Kaku Gothic Pro W3" . "unicode-bmp")))
-
-;; Hooks for newline-and-indent ------------------------------------------------
-;(mapcar (lambda (hook)
-;     (add-hook hook
-;           (lambda ()
-;             (local-set-key "\C-m" 'newline-and-indent)
-;             (local-set-key "\C-j" 'newline)
-;             )))
-;   '(perl-mode-hook
-;     cperl-mode-hook
-;     java-mode-hook
-;     javascript-mode-hook
-;     c-mode-hook
-;     c++-mode-hook
-;     objc-mode-hook
-;     emacs-lisp-mode-hook
-;     lisp-mode-hook
-;     yatex-mode-hook
-;     css-mode-hook
-;     scheme-mode-hook))
+  (let ((host (system-name)))
+    (cond ((equal host "kurumi.cielonegro.org")
+           (set-frame-font "Andale Mono 14"))
+
+          ((equal host "seras")
+           (set-frame-font "Dejavu Sans Mono 11" t))
+
+          ((equal host "yukari.cielonegro.org")
+           (set-frame-font "Dejavu Sans Mono 11" t)))))
 
 ;; Setting for Packages --------------------------------------------------------
 (defun require-if-present (feature)
       (load-file path)
     (message "Warning: file %s is absent" path)))
 
-;; session
-(require-if-present 'session)
+;; cmake
+(autoload 'cmake-mode "cmake-mode" nil t)
+(add-to-list 'auto-mode-alist '("CMakeLists\\.txt\\'" . cmake-mode))
+(add-to-list 'auto-mode-alist '("\\.cmake\\'" . cmake-mode))
+
+;; ditz
+(require-if-present 'ditz)
+
+;; flycheck
+(require-if-present 'flycheck)
+;(if (featurep 'flycheck)
+;    (global-flycheck-mode))
+
+(require-if-present 'flycheck-inline)
+(if (featurep 'flycheck-inline)
+    (with-eval-after-load 'flycheck
+      (add-hook 'flycheck-mode-hook #'flycheck-inline-mode)))
 
 ;; flyspell
 (require-if-present 'flyspell)
 
-;; ditz
-(require-if-present 'ditz)
+;; glsl
+(autoload 'glsl-mode "glsl-mode" nil t)
+(add-to-list 'auto-mode-alist '("\\.glsl\\'" . glsl-mode))
+(add-to-list 'auto-mode-alist '("\\.vert\\'" . glsl-mode))
+(add-to-list 'auto-mode-alist '("\\.frag\\'" . glsl-mode))
+(add-to-list 'auto-mode-alist '("\\.geom\\'" . glsl-mode))
 
-;; mediawiki
-(require-if-present 'mediawiki)
+;; hengband-pickpref
+(autoload 'hengband-pickpref-mode "hengband-pickpref-mode" nil t)
 
 ;; jaspace
 (require-if-present 'jaspace)
 
-;; color-theme
-(require-if-present 'color-theme)
-(if (featurep 'color-theme)
-    (progn
-      (color-theme-initialize)
-      (color-theme-subtle-hacker)))
+;; pkgdiff
+(add-to-list 'load-path "~/sandbox/_editors/emacs-pkgdiff")
+(autoload 'pkgvi "pkgdiff" "Edit a copy of specified file." t)
+(autoload 'pkgdiff "pkgdiff" "Show differences from a backup file." t)
+
+;; rust
+(autoload 'rust-mode "rust-mode" nil t)
+(add-to-list 'auto-mode-alist '("\\.rs\\'" . rust-mode))
+
+(require-if-present 'flycheck-rust)
+(if (featurep 'flycheck-rust)
+    (with-eval-after-load 'rust-mode
+      (add-hook 'flycheck-mode-hook #'flycheck-rust-setup)))
+
+;; session
+(require-if-present 'session)
+(if (featurep 'session)
+    (session-initialize))
+
+;; mediawiki
+(require-if-present 'mediawiki)
+
+;; midnight
+(require-if-present 'midnight)
+
+;; multi-term
+(autoload 'multi-term "multi-term"
+  "Create new term buffer.
+Will prompt you shell name when you type `C-u' before this command." t)
 
 ;; auto-complete
 (require-if-present 'auto-complete-config)
     (paren-activate))
 
 ;; elscreen
-(load "elscreen" "ElScreen" t)
-(elscreen-start)
+(require-if-present 'elscreen)
 (require-if-present 'elscreen-w3m)
+(if (featurep 'elscreen)
+    (elscreen-start))
 
 ;; undo-tree
 (require-if-present 'undo-tree)
 (if (featurep 'undo-tree)
-       (global-undo-tree-mode))
+    (global-undo-tree-mode))
 
 ;; MPC
 ;(require-if-present 'mpc-autoloads)
       (append '(("\\.rst$" . rst-mode)
                 ("\\.rest$" . rst-mode)) auto-mode-alist))
 
+;; graphviz-dot-mode
+(autoload 'graphviz-dot-mode "graphviz-dot-mode"
+  "Major mode for the dot language." t)
+(add-to-list 'auto-mode-alist '("\\.dot\\'" . graphviz-dot-mode))
+(add-to-list 'auto-mode-alist '("\\.gv\\'" . graphviz-dot-mode))
+
 ;; textile-mode
 (autoload 'textile-mode "textile-mode"
   "Major mode for editing Textile documents." t)
 (autoload 'lua-mode "lua-mode" "Lua editing mode." t)
 (add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode))
 
+;; projectile-mode
+(require-if-present 'projectile)
+(if (featurep 'projectile)
+    (progn
+      (projectile-mode +1)
+      (define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)))
+
+;; protobuf-mode
+(autoload 'protobuf-mode "protobuf-mode")
+(add-to-list 'auto-mode-alist '("\\.proto\\'" . protobuf-mode))
+
+;; scala-mode2
+(add-to-list 'load-path "~/sandbox/_scala/scala-mode2")
+(require-if-present 'scala-mode2)
+
+;; sbt-mode
+(add-to-list 'load-path "~/sandbox/_scala/sbt-mode")
+(require-if-present 'sbt-mode)
+
 ;; twittering-mode
 (require-if-present 'twittering-mode)
 (setq twittering-username "phonohawk")
 ;; riece
 (autoload 'riece "riece" "Start Riece" t)
 (add-hook 'riece-after-load-startup-hook
-                 #'(lambda ()
-                         (add-to-list 'riece-addons 'riece-alias)
-                         (add-to-list 'riece-addons 'riece-skk-kakutei)
-                         (add-to-list 'riece-addons 'riece-keyword)
-                         (add-to-list 'riece-addons 'riece-ctlseq)))
+          #'(lambda ()
+              (add-to-list 'riece-addons 'riece-alias)
+              (add-to-list 'riece-addons 'riece-skk-kakutei)
+              (add-to-list 'riece-addons 'riece-keyword)
+              (add-to-list 'riece-addons 'riece-ctlseq)))
 
 ;; CEDET
 (add-to-list 'load-path "/usr/pkg/share/emacs/cedet/common")
 
 ;; ECB
 (require-if-present 'ecb-autoloads)
-(let* ((hosts '(("netbsd." .
-                 (("~/sandbox/yxmimeproc" "yxmimeproc")
-                  ("~/sandbox/YxMIME" "YxMIME.pm")
-                  ))
-                ("g1.cuenote.jp" .
-                 (("~/sandbox/MR/engine/libycom" "libycom")
-                  ))
-                ("aria.cielonegro.org" .
-                 (("~/sandbox/_web-app/Rakka"           "Rakka")
-                  ("~/sandbox/_haskell/Lucu"            "Lucu")
-                  ("~/sandbox/_web-app/Kirschbaum"      "Kirschbaum")
-                  ("~/sandbox/_haskell/HsOpenSSL"       "HsOpenSSL")
-                  ("~/sandbox/_haskell/HsHyperEstraier" "HsHyperEstraier")
-                  ("~/sandbox/_haskell/HsSVN"           "HsSVN")
-                  ("~/sandbox/_game/RoRo"               "RoRo")
-                  ("~/sandbox/_haskell/HXT"             "HXT")
-                  ("~/sandbox/_haskell/hxt-compile"     "hxt-compile")
-                  ("~/src/ghc-6.10.1"                   "ghc-6.10.1")
-                  ("~/sandbox/sugar"                    "sugar")
-                  ("~/sandbox/_haskell/dns"             "dns")
-                  ("~/sandbox/_haskell/blackboard-ddns" "blackboard-ddns")
-                  ))))
+(let* ((hosts '( ("yukari.cielonegro.org" .
+                  ( ("~/sandbox/_games/acid-rain" "acid rain")
+                    ("~/sandbox/_games/Natural-Mystic-Shaders" "Natural Mystic")
+                    ))))
        (paths (cdr (assoc (system-name) hosts))))
   (setq ecb-source-path paths))
 
 (autoload 'cleite "cleite" "Cleite RSS Aggregator -- Emacs Interface" t)
 
 ;; javascript
-(autoload 'js2-mode "js2" nil t)
-(add-to-list 'auto-mode-alist '("\\.js$" . js2-mode))
+(add-to-list 'auto-mode-alist '("\\.js$" . javascript-mode))
 (add-to-list 'auto-mode-alist '("\\.json$" . javascript-mode))
 
+;; typescript
+(autoload 'typescript-mode "typescript-mode"
+  "Major mode for editing typescript." t)
+(add-to-list 'auto-mode-alist '("\\.ts$" . typescript-mode))
+
 ;; vimrc
 (autoload 'vimrc-mode "vimrc-mode"
   "Major mode for editing `.vimrc', `xxx.vim' and `.exrc' files." t)
           ))
 
 ;; Haskell
-(load-if-present "haskell-site-file.el")
+(autoload 'haskell-mode "haskell-mode"
+  "Major mode for editing Haskell scripts." t)
+(autoload 'literate-haskell-mode "haskell-mode"
+  "Major mode for editing literate Haskell scripts." t)
 
 (autoload 'run-haskell "inf-haskell" "" t)
 (autoload 'switch-to-haskell "inf-haskell" "" t)
 (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
 (add-hook 'haskell-mode-hook 'turn-on-haskell-ghci)
 
-(load-if-present "~/sandbox/_input-method/haskell-unicode-input-method/haskell-unicode-input-method")
+;(add-hook 'haskell-mode-hook #'flycheck-haskell-setup)
+
+(load-if-present "~/sandbox/_input-method/emacs-haskell-unicode-input-method/haskell-unicode-input-method")
  (add-hook 'haskell-mode-hook
    (lambda () (set-input-method "haskell-unicode")))
 
 (setq erlang-electric-commands nil)
 
 ;; SKK
-(require 'skk-autoloads)
-(require 'skk-study)
-(global-set-key "\C-x\C-j" 'skk-mode)
-(global-set-key "\C-xj" 'skk-auto-fill-mode)
-(global-set-key "\C-xt" 'skk-tutorial)
-(setq skk-use-jisx0201-input-method t)
-(setq skk-rom-kana-rule-list
-      '(("@" nil "@")
-        ("wi" nil ("ヰ" . "ゐ"))
-        ("we" nil ("ヱ" . "ゑ"))
-        ;;("hh" "h" ("ン" . "ん"))
-        ;;("mm" "m" ("ン" . "ん"))
-        ("zx" nil ("ゝ" . "ヽ"))
-        ("zc" nil ("ゞ" . "ヾ"))))
-(set-input-method 'japanese-skk) ; INPUT METHOD
+(require-if-present 'skk-autoloads)
+(if (featurep 'skk-autoloads)
+       (progn
+         (require-if-present 'skk-study)
+         (global-set-key "\C-x\C-j" 'skk-mode)
+         (global-set-key "\C-xj" 'skk-auto-fill-mode)
+         (global-set-key "\C-xt" 'skk-tutorial)
+         (setq skk-use-jisx0201-input-method t)
+         (setq skk-rom-kana-rule-list
+                       '(("@" nil "@")
+                         ("wi" nil ("ヰ" . "ゐ"))
+                         ("we" nil ("ヱ" . "ゑ"))
+                         ;;("hh" "h" ("ン" . "ん"))
+                         ;;("mm" "m" ("ン" . "ん"))
+                         ("zx" nil ("ゝ" . "ヽ"))
+                         ("zc" nil ("ゞ" . "ヾ"))))
+         (set-input-method 'japanese-skk))) ; INPUT METHOD
 
 ;; navi2ch
 (autoload 'navi2ch "navi2ch" "Navigator for 2ch for Emacs" t)
 
 ;; migemo
-(require-if-present 'migemo)
-(setq migemo-isearch-enable-p nil)
+;(require-if-present 'migemo)
+;(setq migemo-isearch-enable-p nil)
 
 ;; tiarra-conf
 (setq load-path (cons (expand-file-name "~/sandbox/Tiarra") load-path))
   "Major mode for editing comma-separated value files." t)
 (add-to-list 'auto-mode-alist '("\\.[Cc][Ss][Vv]\\'" . csv-mode))
 
+;; tsv-mode
+(autoload 'tsv-mode "tsv-mode" "A mode to edit table like file" t)
+(autoload 'tsv-normal-mode "tsv-mode" "A minor mode to edit table like file" t)
+(setq tsv-write-annotation nil)
+(setq tsv-separator-list '("\t"))
+;(add-to-list 'auto-mode-alist '("\\.[Tt][Ss][Vv]\\'" . tsv-mode))
+
+;; markdown-mode
+;; http://jblevins.org/projects/markdown-mode/
+(autoload 'markdown-mode "markdown-mode.el" "Major mode for editing Markdown files" t)
+(add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
+
 ;; yaml-mode
 (autoload 'yaml-mode "yaml-mode"
   "Major mode for editing YAML files." t)
 (add-to-list 'auto-mode-alist '("\\.ya?ml$"  . yaml-mode))
 
+;; less-css-mode
+(autoload 'less-css-mode "less-css-mode" "Major mode for editing LESS files" t)
+(add-to-list 'auto-mode-alist '("\\.less\\'" . less-css-mode))
+
 ;; Troublesome Tasks
 (if (equal (system-name) "seras")
     (progn
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
- '(Info-additional-directory-list (quote ("/sw/share/info" "/usr/local/info" "/usr/local/share/info")))
  '(ac-ignore-case nil)
- '(appt-display-format (quote window))
+ '(appt-display-format 'window)
  '(appt-message-warning-time 20)
+ '(browse-url-browser-function 'browse-url-firefox)
  '(canlock-password "a14fa4d2601465d55585c291fa8b3943e189e716")
+ '(clean-buffer-list-delay-general 7)
  '(cleite:auto-refresh-interval nil)
  '(cleite:measure-srpc-call-time t)
- '(compilation-scroll-output (quote first-error))
- '(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")))
+ '(compilation-scroll-output 'first-error)
+ '(completion-ignored-extensions
+   '(".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"))
  '(cperl-merge-trailing-else nil)
- '(csv-align-style (quote auto))
- '(default-frame-alist (quote ((tool-bar-lines . 0) (menu-bar-lines . 1) (width . 80) (height . 25) (right-fringe) (left-fringe))))
+ '(csv-align-style 'auto)
+ '(custom-enabled-themes '(gnome2))
+ '(custom-safe-themes
+   '("64affc3597b4271ba6b0b428777d616cfb20d8f7f147dbd00f1de220b2b59bbf" "06e0662b31a2ae8da5c6b5e9a05b25fabd1dc8dd3c3661ac194201131cafb080" default))
+ '(default-frame-alist
+    '((tool-bar-lines . 0)
+      (menu-bar-lines . 1)
+      (width . 80)
+      (height . 25)
+      (right-fringe)
+      (left-fringe)))
  '(ditz-find-issue-directory-automatically-flag t)
- '(ecb-add-path-for-not-matching-files (quote (t)))
- '(ecb-help-info-path "/sw/share/info/ecb.info")
- '(ecb-layout-name "left14")
- '(ecb-options-version "2.32")
- '(ecb-show-sources-in-directories-buffer (quote always))
+ '(ecb-add-path-for-not-matching-files '(t))
+ '(ecb-help-info-path "/usr/pkg/info/ecb.info")
+ '(ecb-layout-name "left7")
+ '(ecb-options-version "2.50")
+ '(ecb-show-sources-in-directories-buffer 'always)
  '(ecb-tip-of-the-day nil)
- '(ecb-tree-buffer-style (quote ascii-guides))
+ '(ecb-tree-buffer-style 'image)
  '(ecb-windows-width 0.2)
+ '(electric-indent-mode nil)
  '(elscreen-display-tab t)
+ '(global-whitespace-mode t)
+ '(graphviz-dot-auto-indent-on-newline nil)
+ '(graphviz-dot-auto-indent-on-semi nil)
  '(haskell-program-name "ghci")
  '(ido-enable-flex-matching t)
  '(ido-everywhere t)
- '(ido-ignore-files (quote ("\\`CVS/" "\\`#" "\\`.#" "\\`\\.\\./" "\\`\\./" "\\.ttc")))
- '(ido-work-directory-list-ignore-regexps (quote ("^\\(/mnt/ibm/\\|/Volumes/IBM80GB/\\)")))
+ '(ido-ignore-files '("\\`CVS/" "\\`#" "\\`.#" "\\`\\.\\./" "\\`\\./" "\\.ttc"))
+ '(ido-work-directory-list-ignore-regexps '("^\\(/mnt/ibm/\\|/Volumes/IBM80GB/\\)"))
  '(indent-tabs-mode nil)
+ '(ispell-dictionary "english")
  '(jabber-nickname "PHO")
  '(jabber-resource "emacs")
  '(jabber-server "jabber.jp")
  '(jabber-username "phonohawk")
- '(jaspace-highlight-tabs t)
  '(js2-auto-indent-flag nil)
  '(js2-basic-offset 4)
  '(js2-indent-on-enter-key nil)
  '(js2-mirror-mode nil)
  '(js2-use-font-lock-faces t)
- '(mediawiki-site-alist (quote (("Wikipedia" "http://en.wikipedia.org/w/" "username" "password" "Main Page") ("YmirDev" "https://ymirlink:santamo@update.forcast.jp/fcdiv/mwiki/" "PHO" "" "メインページ"))))
- '(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))))
- '(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")))))
- '(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")))
+ '(lua-indent-level 4)
+ '(makefile-mode-hook '((lambda nil (set-variable 'tab-width 8))))
+ '(markdown-live-preview-delete-export 'delete-on-export)
+ '(mediawiki-site-alist
+   '(("Wikipedia" "http://en.wikipedia.org/w/" "username" "password" "Main Page")
+     ("YmirDev" "https://ymirlink:santamo@update.forcast.jp/fcdiv/mwiki/" "PHO" "" "メインページ")))
+ '(mew-field-spec
+   '(("^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)))
+ '(mew-refile-guess-alist
+   '(("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"))))
+ '(mew-scan-fields
+   '("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"))
  '(mew-spam: "X-Text-Classification:")
- '(mew-summary-form (quote (type (5 date) " " (14 from) " " t (14 x-classification) " " (30 subj) "|" (0 body))))
+ '(mew-summary-form
+   '(type
+     (5 date)
+     " "
+     (14 from)
+     " " t
+     (14 x-classification)
+     " "
+     (30 subj)
+     "|"
+     (0 body)))
+ '(midnight-mode t)
  '(mouse-wheel-progessive-speed nil)
- '(mouse-wheel-scroll-amount (quote (1 ((shift) . 5) ((control)))))
- '(navi2ch-browse-url-browser-function (quote browse-url-firefox))
+ '(mouse-wheel-scroll-amount '(1 ((shift) . 5) ((control))))
+ '(mpc-browser-tags '(Directory Genre Artist|Composer|Performer Album|Playlist))
+ '(navi2ch-browse-url-browser-function 'browse-url-firefox)
  '(navi2ch-display-splash-screen nil)
- '(navi2ch-list-moved-board-alist (quote (("http://mamono.2ch.net/ihou/" . "http://hideyoshi.2ch.net/ihou/"))))
- '(navi2ch-mona-face-variable (quote navi2ch-mona12-face))
+ '(navi2ch-list-moved-board-alist
+   '(("http://mamono.2ch.net/ihou/" . "http://hideyoshi.2ch.net/ihou/")))
+ '(navi2ch-mona-face-variable 'navi2ch-mona12-face)
  '(navi2ch-mona-on-message-mode t)
- '(newsticker-html-renderer (quote w3m-region))
+ '(newsticker-html-renderer 'w3m-region)
  '(newsticker-url-list nil)
- '(newsticker-url-list-defaults (quote (("slashdot" "http://slashdot.org/index.rss" nil 3600))))
+ '(newsticker-url-list-defaults '(("slashdot" "http://slashdot.org/index.rss" nil 3600)))
+ '(ns-command-modifier 'meta)
  '(nxml-auto-insert-xml-declaration-flag t)
  '(nxml-slash-auto-complete-flag t)
  '(org-replace-disputed-keys t)
- '(rcirc-server-alist (quote (("irc1.ymir.jp" :nick "PHO`cons" nil nil))))
+ '(package-archives
+   '(("gnu" . "https://elpa.gnu.org/packages/")
+     ("melpa" . "https://melpa.org/packages/")))
+ '(package-selected-packages
+   '(elscreen-fr color-theme-modern elscreen elscreen-multi-term projectile elixir-mode flycheck-haskell flycheck-inline flycheck-rust undo-tree auto-complete typescript-mode cargo toml-mode rust-mode))
+ '(rcirc-server-alist '(("irc1.ymir.jp" :nick "PHO`cons" nil nil)))
  '(riece-layout "default")
- '(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"))))
+ '(riece-layout-alist
+   '(("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")))
  '(riece-others-buffer-mode nil)
- '(rng-schema-locating-files (quote ("schemas.xml" "~/share/nxml/schemas.xml" "/usr/pkg/share/emacs/site-lisp/nxml-mode/schema/schemas.xml")))
+ '(rng-schema-locating-files
+   '("schemas.xml" "~/share/nxml/schemas.xml" "/usr/pkg/share/emacs/site-lisp/nxml-mode/schema/schemas.xml"))
  '(rst-level-face-base-light 50)
- '(safe-local-variable-values (quote ((todo-categories "Todo" "Todo" "Todo" "Todo"))))
+ '(safe-local-variable-values '((todo-categories "Todo" "Todo" "Todo" "Todo")))
+ '(select-enable-clipboard t)
  '(session-use-package t nil (session))
  '(tramp-auto-save-directory "/tmp/tramp-auto-save")
  '(tramp-completion-reread-directory-timeout 2)
  '(tramp-default-host "localhost")
  '(tramp-default-method "sshx")
- '(uniquify-buffer-name-style (quote forward) nil (uniquify))
+ '(uniquify-buffer-name-style 'forward nil (uniquify))
  '(uniquify-trailing-separator-p t)
- '(w3m-bookmark-file-coding-system (quote utf-8))
- '(w3m-coding-system (quote utf-8))
- '(w3m-coding-system-priority-list (quote (utf-8)))
- '(w3m-default-coding-system (quote utf-8))
+ '(vc-cvs-diff-switches '("-u"))
+ '(vc-cvs-stay-local nil)
+ '(vc-handled-backends '(Git Hg))
+ '(w3m-bookmark-file-coding-system 'utf-8)
+ '(w3m-coding-system 'utf-8)
+ '(w3m-coding-system-priority-list '(utf-8))
+ '(w3m-default-coding-system 'utf-8)
  '(w3m-default-display-inline-images t)
- '(w3m-file-coding-system (quote utf-8))
- '(w3m-file-name-coding-system (quote utf-8))
+ '(w3m-file-coding-system 'utf-8)
+ '(w3m-file-name-coding-system 'utf-8)
  '(w3m-fill-column 80)
- '(w3m-input-coding-system (quote utf-8))
+ '(w3m-input-coding-system 'utf-8)
  '(w3m-key-binding nil)
- '(w3m-output-coding-system (quote utf-8))
- '(w3m-terminal-coding-system (quote utf-8))
+ '(w3m-output-coding-system 'utf-8)
+ '(w3m-terminal-coding-system 'utf-8)
  '(w3m-use-cookies t)
- '(whitespace-style (quote (face tabs trailing lines-tail space-before-tab newline indentation empty space-after-tab tab-mark)))
+ '(whitespace-global-modes '(not mew-draft-mode mew-summary-mode))
+ '(whitespace-style
+   '(face tabs trailing space-before-tab newline indentation empty space-after-tab))
  '(woman-cache-filename "~/.wmncach.el")
- '(x-select-enable-clipboard t))
+ '(yaml-block-literal-electric-alist '((62 . "-"))))
 (custom-set-faces
  ;; custom-set-faces was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  '(navi2ch-bm-new-unread-face ((t (:foreground "PaleGreen" :weight bold))))
  '(navi2ch-bm-updated-cache-face ((t (:foreground "CornflowerBlue" :weight bold))))
  '(navi2ch-bm-updated-unread-face ((t (:foreground "DarkSeaGreen3" :weight bold))))
+ '(org-level-1 ((t (:foreground "pale turquoise"))))
  '(textile-link-face ((t (:foreground "cyan"))))
  '(textile-ol-bullet-face ((t (:foreground "dark orange"))))
  '(textile-ul-bullet-face ((t (:foreground "deep sky blue"))))
  '(which-func-face ((t (:background "black" :foreground "dark orange"))))
+ '(whitespace-empty ((t (:background "gray20" :foreground "firebrick"))))
  '(whitespace-indentation ((t (:foreground "dimgray" :underline t))))
- '(whitespace-line ((t (:background "gray20")))))
+ '(whitespace-line ((t (:background "gray20"))))
+ '(whitespace-tab ((t (:background "grey22" :foreground "dim gray" :underline (:color foreground-color :style wave))))))