Emacs

Links

Tips

load-path設定

(setq load-path
      (append
       (list
       (expand-file-name "~/path/to/elisp/")
       )
       load-path))

.emacsを再読み込み

M-x eval-buffer

選択領域のハイライト

(transient-mark-mode 1)

起動時メッセージオフ

(setq inhibit-startup-message t)

各種パッケージ

color-theme

とにかく黒背景だろJK。 http://www.nongnu.org/color-theme/

 (require 'color-theme)
    (color-theme-initialize)
    (color-theme-matrix)

auto-install

何はともあれ。本家

これでemacs wiki 等にあるelispがインストール&アップデートできる。

sense-region

sense-region.el

(autoload 'sense-region-on "sense-region"
  "System to toggle region and rectangle." t nil)
(sense-region-on)