]> gitweb @ CieloNegro.org - sugar.git/blobdiff - dot-files/_emacs_el
Auto commit by The Sugar System.
[sugar.git] / dot-files / _emacs_el
index b512251a356ff7a95b22a1e45ca1562a45c7aaa0..f9781b92c8b426098edde272d17cb6a990a61f17 100644 (file)
@@ -5,7 +5,7 @@
 (add-to-list 'load-path "/usr/local/share/emacs/site-lisp")
 
 ;; Setting for encodings of the environment -----------------------------------
-(set-language-environment 'Japanese)
+;(set-language-environment 'Japanese)
 (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
-  (set-default-font "Inconsolata-14")
-  (set-face-font 'variable-pitch "Inconsolata-14")
-  (set-fontset-font (frame-parameter nil 'font)
-                    'japanese-jisx0208
-                    '("Takaoゴシック" . "unicode-bmp")))
+  (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
 ;; jaspace
 (require-if-present 'jaspace)
 
+;; color-theme
+(require-if-present 'color-theme)
+(if (featurep 'color-theme)
+    (color-theme-subtle-hacker))
+
+;; auto-complete
+(require-if-present 'auto-complete-config)
+(if (featurep 'auto-complete-config)
+    (progn
+      (add-to-list 'ac-dictionary-directories
+                   "/usr/pkg/share/emacs/site-lisp/auto-complete/ac-dict")
+      (mapcar (lambda (mode)
+                (add-to-list 'ac-modes mode))
+              '(autoconf-mode
+                erlang-mode))
+      (setq ac-modes (remove 'css-mode ac-modes))
+      (add-hook 'erlang-mode-hook
+                (lambda ()
+                  (add-to-list 'ac-sources 'ac-source-semantic)))
+      (ac-config-default)))
+
 ;; mic-paren
 (require-if-present 'mic-paren)
 (if (featurep 'mic-paren)
 
 ;; undo-tree
 (require-if-present 'undo-tree)
-(global-undo-tree-mode)
+(if (featurep 'undo-tree)
+       (global-undo-tree-mode))
 
 ;; MPC
 ;(require-if-present 'mpc-autoloads)
 (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
             (inf-ruby-keys)
           ))
 
-;; Tramp
-(setq tramp-default-method "ssh")
-
 ;; Haskell
 (load-if-present "haskell-site-file.el")
 
 (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))
 
 (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
+   (lambda () (set-input-method "haskell-unicode")))
+
+
 ;; Hoogle
 (autoload 'hoogle-lookup "hoogle" "Hoogle" t)
 (global-set-key (kbd "C-c h") 'hoogle-lookup)
   ;; 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)
  '(canlock-password "a14fa4d2601465d55585c291fa8b3943e189e716")
  '(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)
+ '(rcirc-server-alist (quote (("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-others-buffer-mode nil)
  '(rng-schema-locating-files (quote ("schemas.xml" "/sw/share/schema/schemas.xml" "~/share/nxml/schemas.xml")))
  '(rst-level-face-base-light 50)
  '(safe-local-variable-values (quote ((todo-categories "Todo" "Todo" "Todo" "Todo"))))
+ '(tramp-auto-save-directory "/tmp/tramp-auto-save")
+ '(tramp-completion-reread-directory-timeout 2)
+ '(tramp-default-host "localhost")
  '(w3m-bookmark-file-coding-system (quote utf-8))
  '(w3m-coding-system (quote utf-8))
  '(w3m-coding-system-priority-list (quote (utf-8)))