.emacs
  一番短い .emacs
  設定内容
  M-x customize
    Auto Coding Alist
    changed
  諸々
setq
  setq の値
  display-time
  setq/defvar
試す・評価する
  Lisp Interaction
  (emacs-version)
  list
  (a b c)
  abc def ghij
  append
  cons
  eval-region
  C-x C-e
良く使う文
  autoload
  add-hook
    どんな hook ?
  global-set-key
良く使う変数
  Buffer-local variables
  load-path
    sample
  file-codin..alist
  auto-mode-alist
  fill-column
設定のこつ
  info
  分けて load
いろいろ
  Wanderlust
   draft に定形文
まとめ

load-path

load load-library require の時に読む *.el, *.elc を探す位置(path) を指定する変数が load-path。 つまりシェル変数の PATH path と同じようなものだと思えばいい。

標準でないところに置いてあるものを load するには、次のようにして追加しておく

(setq load-path 
    (cons (expand-file-name "~/.emacs-dir" load-path))
何が標準かは、
M-x describe-variable RET load-path RET
して見れば分る。 (その後に) M-x replace-regex RET C-q space RET C-q C-j RET
dot.emacs
Last Update: Sat, 07 Jun 2014 22:16:17 GMT 1.66 2008/03/08