Set up .scripts/install-emacs.el to load packages from MELPA

This commit is contained in:
Nathan Schneider
2019-11-30 15:23:13 -07:00
parent c602013e3b
commit f05987886c
4 changed files with 23 additions and 16 deletions
+1 -4
View File
@@ -13,10 +13,7 @@ sudo apt-get -y install xdg-open
# emacs MAKE ARCH-COMPATIBLE
sudo apt-get -y install emacs-gtk
sudo apt-get -y install elpa-markdown-mode
mkdir -p ~/.emacs.d/ && mkdir -p ~/.emacs.d/lisp/
cd ~/.emacs.d/lisp/
&& git clone git://github.com/bnbeckwith/wc-mode.git
emacs --script install-emacs.el
# pandoc MAKE ARCH-COMPATIBLE
sudo apt-get -y install pandoc
+1 -4
View File
@@ -13,10 +13,7 @@ sudo apt-get -y install xdg-open
# emacs
sudo apt-get -y install emacs-gtk
sudo apt-get -y install elpa-markdown-mode
mkdir -p ~/.emacs.d/ && mkdir -p ~/.emacs.d/lisp/
cd ~/.emacs.d/lisp/
&& git clone git://github.com/bnbeckwith/wc-mode.git
emacs --script install-emacs.el
# pandoc
sudo apt-get -y install pandoc
+4
View File
@@ -0,0 +1,4 @@
;; elisp script for installing emacs packages via MELPA
(package-refresh-contents)
(package-install markdown-mode)
(package-install wc-mode)