]> gitweb @ CieloNegro.org - sugar.git/blobdiff - dot-files/_emacs_el
Auto commit by The Sugar System.
[sugar.git] / dot-files / _emacs_el
index 233ed1299f102f852ee1571eddaa8c21a0113429..72426b0329f373cf6a8661e0010f9e0a90e71f46 100644 (file)
 (display-time)
 
 ;; Setting for Frames ----------------------------------------------------------
+(when window-system
+  (set-default-font "Bitstream Vera Sans Mono 11")
+  (set-fontset-font (frame-parameter nil 'font)
+                    'japanese-jisx0208
+                    '("Hiragino Kaku Gothic Pro W3" . "unicode-bmp")))
 
 ;; Hooks for newline-and-indent ------------------------------------------------
 (mapcar (lambda (hook)
       (require feature)
     (file-error
      (if (equal (cadr e) "Cannot open load file")
-         nil ; ignore
+         (message "Warning: feature %s is absent" feature) ; warn and ignore
+       (apply 'signal (car e) (cdr e)))))) ; rethrow
+
+(defun load-if-present (file)
+  (condition-case e
+      (load file)
+    (file-error
+     (if (equal (cadr e) "Cannot open load file")
+         (message "Warning: file named %s is absent" file) ; warn and ignore
        (apply 'signal (car e) (cdr e)))))) ; rethrow
 
 (defun load-file-if-present (path)
   (if (file-exists-p path)
-      (load-file path)))
+      (load-file path)
+    (message "Warning: file %s is absent" path)))
 
 ;; flyspell
 (require-if-present 'flyspell)
 
+;; jaspace
+(require-if-present 'jaspace)
+
 ;; mic-paren
 (require-if-present 'mic-paren)
-(paren-activate)
+(if (featurep 'mic-paren)
+       (paren-activate))
 
 ;; elscreen
 (load "elscreen" "ElScreen" t)
 ;; MPC
 ;(require-if-present 'mpc-autoloads)
 
+;; rst-mode
+(autoload 'rst-mode "rst"
+  "mode for editing reStructuredText documents" t)
+(setq auto-mode-alist
+      (append '(("\\.rst$" . rst-mode)
+                ("\\.rest$" . rst-mode)) auto-mode-alist))
+
+;; twittering-mode
+(require-if-present 'twittering-mode)
+(setq twittering-username "phonohawk")
+
 ;; cedet
 (load-file-if-present "/usr/pkg/share/emacs/site-lisp/cedet/common/cedet.el")
 
+;; 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)))
+
 ;; 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")
+                  ))))
+       (paths (cdr (assoc (system-name) hosts))))
+  (setq ecb-source-path paths))
 
 ;; leim
 (require-if-present 'gaelic)
 (setq sokoban-playerfiles-dir "/usr/local/var/games/emacs-sokoban")
 
 ;; nXML
-(load "/usr/pkg/share/emacs/site-lisp/nxml-mode/rng-auto.el")
+(load-file-if-present "/usr/pkg/share/emacs/site-lisp/nxml-mode/rng-auto.el")
 (defalias 'xml-mode 'nxml-mode)
 (add-to-list 'auto-mode-alist '("\\.xml$" . nxml-mode))
 (add-to-list 'auto-mode-alist '("\\.xi$" . nxml-mode))
 (setq tramp-default-method "ssh")
 
 ;; Haskell
-(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)
+(load-if-present "haskell-site-file.el")
+
+(autoload 'run-haskell "inf-haskell" "" t)
+(autoload 'switch-to-haskell "inf-haskell" "" t)
+(autoload 'inferior-haskell-load-file "inf-haskell" "" t)
+(autoload 'inferior-haskell-type "inf-haskell" "" t)
+(autoload 'inferior-haskell-info "inf-haskell" "" t)
+(autoload 'inferior-haskell-find-definition "inf-haskell" "" t)
+(autoload 'inferior-haskell-find-haddock "inf-haskell" "" t)
+
 
 (add-to-list 'auto-mode-alist '("\\.hs$" . haskell-mode))
 (add-to-list 'auto-mode-alist '("\\.hsc$" . haskell-mode))
 (setq cperl-indent-level 4)
 (setq cperl-indent-parens-as-block t)
 
+;; Erlang
+(add-to-list 'load-path "/usr/pkg/lib/erlang/lib/tools-2.6/emacs")
+(require-if-present 'erlang-start)
+
 ;; SKK
 (require 'skk-autoloads)
 (global-set-key "\C-x\C-j" 'skk-mode)
  '(canlock-password "a14fa4d2601465d55585c291fa8b3943e189e716")
  '(cleite:auto-refresh-interval nil)
  '(cleite:measure-srpc-call-time t)
+ '(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)
+ '(default-frame-alist (quote ((tool-bar-lines . 0) (menu-bar-lines . 1) (width . 80) (height . 25) (right-fringe) (left-fringe))))
  '(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-source-path (quote (("~/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") ("~/src/ghc-6.8.3" "ghc-6.8.3") ("/Users/admin/sandbox/sugar" "sugar") ("/" "/"))))
  '(ecb-tip-of-the-day nil)
  '(ecb-tree-buffer-style (quote ascii-guides))
  '(ecb-windows-width 0.2)
  '(jabber-resource "emacs")
  '(jabber-server "jabber.jp")
  '(jabber-username "phonohawk")
+ '(jaspace-highlight-tabs t)
  '(js2-basic-offset 4)
  '(js2-indent-on-enter-key t)
  '(js2-use-font-lock-faces t)
  '(mew-summary-form (quote (type (5 date) " " (14 from) " " t (14 x-classification) " " (30 subj) "|" (0 body))))
  '(mouse-wheel-progessive-speed nil)
  '(mouse-wheel-scroll-amount (quote (1 ((shift) . 5) ((control)))))
- '(navi2ch-browse-url-browser-function (quote browse-url-with-firefox))
+ '(navi2ch-browse-url-browser-function (quote 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-mona16-face))
  '(navi2ch-mona-on-message-mode t)
  '(newsticker-html-renderer (quote w3m-region))
  '(newsticker-url-list-defaults (quote (("slashdot" "http://slashdot.org/index.rss" nil 3600))))
  '(nxml-auto-insert-xml-declaration-flag t)
  '(nxml-slash-auto-complete-flag t)
+ '(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-others-buffer-mode nil)
  '(rng-schema-locating-files (quote ("schemas.xml" "/sw/share/schema/schemas.xml" "~/share/nxml/schemas.xml")))
  '(safe-local-variable-values (quote ((todo-categories "Todo" "Todo" "Todo" "Todo"))))
  '(w3m-bookmark-file-coding-system (quote utf-8))
   ;; Your init file should contain only one such instance.
   ;; If there is more than one, they won't work right.
  '(flyspell-incorrect ((t (:foreground "OrangeRed" :overline t))))
+ '(jaspace-highlight-tab-face ((((class color) (background dark)) (:foreground "gray70" :underline t))))
  '(which-func-face ((t (:background "black" :foreground "dark orange")))))