Last active
August 25, 2022 00:30
-
-
Save knishioka/4578f62e82f90f958fb30da4db557078 to your computer and use it in GitHub Desktop.
コマンドラインからemacsのpackageのインストール
This file contains 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
emacs --batch --eval "(require 'package)" \ | |
--eval "(add-to-list 'package-archives '(\"melpa\" . \"https://melpa.org/packages/\") t)" \ | |
--eval "(package-refresh-contents)" \ | |
--eval "(package-initialize)" \ | |
--eval "(package-install 'flymake-python-pyflakes))" \ | |
--eval "(package-install 'guru-mode))" \ | |
--eval "(package-install 'helm))" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment