Skip to content

Instantly share code, notes, and snippets.

@ychubachi
Last active December 19, 2015 10:09
Show Gist options
  • Save ychubachi/5938681 to your computer and use it in GitHub Desktop.
Save ychubachi/5938681 to your computer and use it in GitHub Desktop.
packageをインストールするためのgistです.packageの初期化が終わっていることが前提です.
;; パッケージのインストール
(setq package-list '(PACKAGE1 PACKAGE1))
(dolist (package package-list)
(when (not (package-installed-p package))
(package-install package)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment