Fixed install-emacs.el

This commit is contained in:
Nathan Schneider
2020-04-30 15:54:31 +00:00
parent 8e458edf1e
commit 1a73dde7ba
3 changed files with 12 additions and 4 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ sudo pacman -S keepassxc
# emacs # emacs
sudo pacman -S emacs sudo pacman -S emacs
sudo pacman -S aspell-en # English dictionary sudo pacman -S aspell-en # English dictionary
emacs --script install-emacs.el # not working emacs --script ~/.scripts/install-emacs.el
# pandoc # pandoc
sudo pacman -S pandoc sudo pacman -S pandoc
+1 -1
View File
@@ -15,7 +15,7 @@ sudo apt-get install nodejs
# emacs # emacs
sudo apt-get -y install emacs-gtk sudo apt-get -y install emacs-gtk
sudo apt-get -y install aspell aspell-en sudo apt-get -y install aspell aspell-en
emacs --script install-emacs.el emacs --script ~/.scripts/install-emacs.el
# pandoc # pandoc
sudo apt-get -y install pandoc sudo apt-get -y install pandoc
+10 -2
View File
@@ -1,4 +1,12 @@
;; elisp script for installing emacs packages via MELPA ;; elisp script for installing emacs packages via MELPA
(require 'package)
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/"))
(package-initialize)
;; setting the default directory for extra packages
(add-to-list 'load-path "~/.emacs.d/lisp/")
(package-refresh-contents) (package-refresh-contents)
(package-install markdown-mode) (package-install 'markdown-mode)
(package-install wc-mode) (package-install 'wc-mode)