]> gitweb @ CieloNegro.org - sugar.git/blobdiff - dot-files/_emacs_el
Auto commit by The Sugar System.
[sugar.git] / dot-files / _emacs_el
index bdf6fd17990e438fc62162090b66214f056ab5aa..48a9e4755ff15e3787915bedbfc31384698310d5 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)
 ;; Setting for Frames ----------------------------------------------------------
 (when window-system
   (let ((host (system-name)))
-    (cond ((equal host "seras")
-           (set-frame-font "Dejavu Sans Mono 11" t))
+    (cond ((equal host "kurumi.cielonegro.org")
+           (set-frame-font "Andale Mono 14"))
 
-          ((equal host "yukari.cielonegro.org")
+          ((equal host "seras")
            (set-frame-font "Dejavu Sans Mono 11" t))
 
-          ((equal host "aria.cielonegro.org")
-           (progn
-             (set-frame-font "Dejavu Sans Mono 13" t)
-             ;; Emacs 24.4.1 somehow gets very slow when the following
-             ;; lines are uncommented.
-             ;;(set-fontset-font nil 'japanese-jisx0208 "さざなみゴシック")
-             ;;(set-fontset-font nil 'japanese-jisx0212 "さざなみゴシック")
-             ;;(set-fontset-font nil 'katakana-jisx0201 "さざなみゴシック")
-             )))))
+          ((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)))
 
+;; 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)
 
-;; jaspace
-(require-if-present 'jaspace)
-
 ;; glsl
 (autoload 'glsl-mode "glsl-mode" nil t)
 (add-to-list 'auto-mode-alist '("\\.glsl\\'" . glsl-mode))
 (add-to-list 'auto-mode-alist '("\\.frag\\'" . glsl-mode))
 (add-to-list 'auto-mode-alist '("\\.geom\\'" . glsl-mode))
 
+;; hengband-pickpref
+(autoload 'hengband-pickpref-mode "hengband-pickpref-mode" nil t)
+
+;; jaspace
+(require-if-present 'jaspace)
+
+;; json
+(require-if-present 'json-par)
+(if (featurep 'json-par)
+    (add-hook 'json-mode-hook #'json-par-mode))
+
+;; 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)
 
-;; color-theme
-(require-if-present 'color-theme)
-(if (featurep 'color-theme)
-    (progn
-      (color-theme-initialize)
-      (color-theme-subtle-hacker)))
-
 ;; multi-term
 (autoload 'multi-term "multi-term"
   "Create new term buffer.
@@ -205,15 +232,10 @@ Will prompt you shell name when you type `C-u' before this command." t)
     (paren-activate))
 
 ;; elscreen
-(condition-case e
-    (load "elscreen" "ElScreen" t)
-  (file-error
-   (if (equal (cadr e) "Cannot open load file")
-       (message "Warning: feature %s is absent" feature) ; warn and ignore
-     (apply 'signal (car e) (cdr e))))) ; rethrow
+(require-if-present 'elscreen)
+(require-if-present 'elscreen-w3m)
 (if (featurep 'elscreen)
     (elscreen-start))
-(require-if-present 'elscreen-w3m)
 
 ;; undo-tree
 (require-if-present 'undo-tree)
@@ -249,6 +271,13 @@ Will prompt you shell name when you type `C-u' before this command." 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))
@@ -280,28 +309,10 @@ Will prompt you shell name when you type `C-u' before this command." t)
 
 ;; 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))
 
@@ -325,8 +336,7 @@ Will prompt you shell name when you type `C-u' before this command." t)
 (autoload 'cleite "cleite" "Cleite RSS Aggregator -- Emacs Interface" t)
 
 ;; javascript
-(add-to-list 'auto-mode-alist '("\\.js$" . javascript-mode))
-(add-to-list 'auto-mode-alist '("\\.json$" . javascript-mode))
+(add-to-list 'auto-mode-alist '("\\.js\\'" . javascript-mode))
 
 ;; typescript
 (autoload 'typescript-mode "typescript-mode"
@@ -372,7 +382,10 @@ Will prompt you shell name when you type `C-u' before this command." 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)
@@ -389,7 +402,9 @@ Will prompt you shell name when you type `C-u' before this command." 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")))
 
@@ -420,28 +435,30 @@ Will prompt you shell name when you type `C-u' before this command." t)
 (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))
@@ -552,23 +569,26 @@ Will prompt you shell name when you type `C-u' before this command." t)
  ;; 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-message-warning-time 20)
  '(browse-url-browser-function (quote browse-url-firefox))
  '(canlock-password "a14fa4d2601465d55585c291fa8b3943e189e716")
+ '(cl-old-struct-compat-mode t)
  '(clean-buffer-list-delay-general 7)
  '(cleite:auto-refresh-interval nil)
  '(cleite:measure-srpc-call-time t)
+ '(column-number-mode 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")))
  '(cperl-merge-trailing-else nil)
  '(csv-align-style (quote auto))
+ '(custom-enabled-themes (quote (gnome2)))
+ '(custom-safe-themes
+   (quote
+    ("64affc3597b4271ba6b0b428777d616cfb20d8f7f147dbd00f1de220b2b59bbf" "06e0662b31a2ae8da5c6b5e9a05b25fabd1dc8dd3c3661ac194201131cafb080" default)))
  '(default-frame-alist
     (quote
      ((tool-bar-lines . 0)
@@ -577,17 +597,19 @@ Will prompt you shell name when you type `C-u' before this command." t)
       (height . 25)
       (right-fringe)
       (left-fringe))))
+ '(display-time-mode t)
  '(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-help-info-path "/usr/pkg/info/ecb.info")
+ '(ecb-layout-name "left7")
+ '(ecb-options-version "2.50")
  '(ecb-show-sources-in-directories-buffer (quote always))
  '(ecb-tip-of-the-day nil)
- '(ecb-tree-buffer-style (quote ascii-guides))
+ '(ecb-tree-buffer-style (quote image))
  '(ecb-windows-width 0.2)
  '(electric-indent-mode nil)
  '(elscreen-display-tab t)
+ '(global-undo-tree-mode t)
  '(global-whitespace-mode t)
  '(graphviz-dot-auto-indent-on-newline nil)
  '(graphviz-dot-auto-indent-on-semi nil)
@@ -597,6 +619,7 @@ Will prompt you shell name when you type `C-u' before this command." t)
  '(ido-ignore-files
    (quote
     ("\\`CVS/" "\\`#" "\\`.#" "\\`\\.\\./" "\\`\\./" "\\.ttc")))
+ '(ido-mode (quote both) nil (ido))
  '(ido-work-directory-list-ignore-regexps (quote ("^\\(/mnt/ibm/\\|/Volumes/IBM80GB/\\)")))
  '(indent-tabs-mode nil)
  '(ispell-dictionary "english")
@@ -614,8 +637,7 @@ Will prompt you shell name when you type `C-u' before this command." t)
  '(markdown-live-preview-delete-export (quote delete-on-export))
  '(mediawiki-site-alist
    (quote
-    (("Wikipedia" "http://en.wikipedia.org/w/" "username" "password" "Main Page")
-     ("YmirDev" "https://ymirlink:santamo@update.forcast.jp/fcdiv/mwiki/" "PHO" "" "メインページ"))))
+    (("Wikipedia" "http://en.wikipedia.org/w/" "username" "password" "Main Page"))))
  '(mew-field-spec
    (quote
     (("^Resent-\\(From\\|To\\|Cc\\|Date\\)" t mew-face-header-important mew-face-header-important)
@@ -690,9 +712,18 @@ Will prompt you shell name when you type `C-u' before this command." t)
  '(newsticker-url-list-defaults
    (quote
     (("slashdot" "http://slashdot.org/index.rss" nil 3600))))
+ '(ns-command-modifier (quote meta))
  '(nxml-auto-insert-xml-declaration-flag t)
  '(nxml-slash-auto-complete-flag t)
  '(org-replace-disputed-keys t)
+ '(package-archives
+   (quote
+    (("gnu" . "https://elpa.gnu.org/packages/")
+     ("melpa" . "https://melpa.org/packages/"))))
+ '(package-selected-packages
+   (quote
+    (json-par nim-mode 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)))
+ '(projectile-mode t nil (projectile))
  '(rcirc-server-alist (quote (("irc1.ymir.jp" :nick "PHO`cons" nil nil))))
  '(riece-layout "default")
  '(riece-layout-alist
@@ -714,14 +745,16 @@ Will prompt you shell name when you type `C-u' before this command." t)
  '(safe-local-variable-values (quote ((todo-categories "Todo" "Todo" "Todo" "Todo"))))
  '(select-enable-clipboard t)
  '(session-use-package t nil (session))
- '(tramp-auto-save-directory "/tmp/tramp-auto-save" nil (tramp))
- '(tramp-completion-reread-directory-timeout 2 nil (tramp))
- '(tramp-default-host "localhost" nil (tramp))
- '(tramp-default-method "sshx" nil (tramp))
+ '(skk-background-mode (quote light))
+ '(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-trailing-separator-p t)
  '(vc-cvs-diff-switches (quote ("-u")))
  '(vc-cvs-stay-local nil)
+ '(vc-handled-backends (quote (Git Hg)))
  '(w3m-bookmark-file-coding-system (quote utf-8))
  '(w3m-coding-system (quote utf-8))
  '(w3m-coding-system-priority-list (quote (utf-8)))
@@ -735,6 +768,7 @@ Will prompt you shell name when you type `C-u' before this command." t)
  '(w3m-output-coding-system (quote utf-8))
  '(w3m-terminal-coding-system (quote utf-8))
  '(w3m-use-cookies t)
+ '(which-function-mode t)
  '(whitespace-global-modes (quote (not mew-draft-mode mew-summary-mode)))
  '(whitespace-style
    (quote
@@ -749,10 +783,14 @@ Will prompt you shell name when you type `C-u' before this command." t)
  '(diff-added ((t (:inherit diff-changed :foreground "medium spring green" :weight extra-bold))))
  '(diff-removed ((t (:foreground "gold3" :weight extra-bold))))
  '(flyspell-incorrect ((t (:foreground "OrangeRed" :overline t))))
+ '(font-lock-comment-face ((t (:foreground "white smoke"))))
+ '(font-lock-keyword-face ((t (:foreground "salmon"))))
  '(jaspace-highlight-tab-face ((((class color) (background dark)) (:foreground "gray70" :underline t))))
+ '(mode-line ((t (:background "grey75" :foreground "black" :box (:line-width -1 :style released-button)))))
  '(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"))))