LoginSignup
3
3

More than 5 years have passed since last update.

auto-installのインストールおよび設定

Posted at

auto-installをダウンロードしてバイトコンパイルします。

$ mkdir -p ~/.emacs.d/auto-install
$ cd ~/.emacs.d/auto-install
$ wget http://www.emacswiki.org/emacs/download/auto-install.el
$ emacs --batch -Q -f batch-byte-compile auto-install.el

Emacsの設定ファイルに下記を追加してEmacsを再起動します。

~/.emacs.d/init.el
;; (install-elisp-from-emacswiki "auto-install.el")
(require 'auto-install)
(add-to-list 'load-path auto-install-directory)
(auto-install-update-emacswiki-package-name t)
(auto-install-compatibility-setup)
(setq ediff-window-setup-function 'ediff-setup-windows-plain)
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3