今、emacs を起動すると、prelude が起動しなくなりました。これは私のpersonal.el
ファイルです:
(setq-default tab-width 4)
(setq tab-width 4)
(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.
'(tab-stop-list (quote (4 8 12 16 20 24 28 32 36 40 44 48 52 56 60 64 68 72 76 80 84 88 92 96 100 104 108 112 116 120))))
(setq exec-path (append exec-path '("/usr/bin/")))
(setq auto-fill-mode -1)
(setq-default fill-column 99999)
(setq fill-column 99999)
(setq global-hl-line-mode -1)
(require 'projectile)
(defun myprojectilehook ()
(projectile-mode)
)
(add-hook 'find-file-hook 'myprojectilehook)
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
find-file-hook にフックを追加しようとしました。これにより、現在のバッファーの発射物が有効になりますが、あまり成功しませんでした。emacsを開くと、発射物が無効になります。新しいファイルにアクセスすると、発射物は無効のままです。私は何を間違っていますか?