Last active
January 24, 2016 03:45
-
-
Save kakikubo/1dc1fdfd66cdafd42e19 to your computer and use it in GitHub Desktop.
emacs起動時に出るWarningを抑制する ref: http://qiita.com/kakikubo/items/412715e378b03b79faff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(when (locate-library "cask") | |
(require 'cask) | |
(require 'cask "~/.cask/cask.el") | |
) | |
(cask-initialize) | |
(require 'pallet) | |
(require 'init-loader) | |
(setq init-loader-show-log-after-init nil) | |
(init-loader-load "~/.emacs.d/conf") | |
(load "init-common") | |
(load "init-elscreen") | |
(load "init-anything") | |
(load "init-webmode") | |
(load "init-sql-indent") | |
(load "init-ext") | |
(load "init-js3") | |
(load "init-webmode") | |
(load "init-linum") | |
(load "init-maxframe") | |
(load "init-auto-complete") | |
(load "init-csharpmode") | |
(load "init-omnisharp") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Warning (initialization): Your `load-path' seems to contain | |
your `.emacs.d' directory: ~/.emacs.d | |
This is likely to cause problems... | |
Consider using a subdirectory instead, e.g.: /Users/kakikubo/.emacs.d/lisp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; shut up, emacs! | |
'(setq display-warning-minimum-level :error)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment