emacsのinit.el
(add-to-list 'load-path "~/.emacs.d/elisp")
(add-to-list 'load-path "~/.emacs.d/conf")
;(setq inhibit-startup-screen t)
(tool-bar-mode 0)
(menu-bar-mode 0)
;; (install-elips "http://www.emacswiki.org/emacs/download/auto-install.el")
(when (require 'auto-install nil t)
(setq auto-install-directory "~/.emacs.d/elisp/")
(auto-install-update-emacswiki-package-name t)
(auto-install-compatibility-setup))
(custom-set-variables
;; custom-set-variables was added by Custom.
;; 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.
'(inhibit-startup-screen t))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; 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.
)
;;
(setq show-paren-delay 0)
(show-paren-mode t)
;;
(setq show-paren-style 'expression)
;;
(set-face-background 'show-paren-match-face nil)
(set-face-underline-p 'show-paren-match-face "blue")
(require 'anything-startup)
(global-set-key "\C-xe" 'anything-for-files)
(require 'auto-complete-config)
(add-to-list 'ac-dictionary-directories "/root/.emacs.d/elisp/ac-dict")
(ac-config-default)
;; scala mode
(require 'scala-mode-auto)
最終更新:2011年06月05日 12:26