Updated .emacs a bit and changed install.sh to install-deb and install-arch

This commit is contained in:
Nathan Schneider
2019-11-29 23:07:14 -07:00
parent 047b2a1aee
commit c602013e3b
4 changed files with 82 additions and 32 deletions
+37
View File
@@ -0,0 +1,37 @@
#!/bin/bash
# Install script for ntnsndr Deb environment
echo "Beginning install script for ntnsndr Arch environment"
# First, some basic utilities MAKE ARCH-COMPATIBLE
sudo apt-get -y install xdg-open
# Next, core apps
# TO DO nextcloud
# TO DO keepassxc
# TO DO git
# 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
# pandoc MAKE ARCH-COMPATIBLE
sudo apt-get -y install pandoc
sudo apt-get -y install pandoc-citeproc
sudo apt-get -y install texlive
# revealjs
# TO DO: https://github.com/hakimel/reveal.js/
# zotero
echo "Go to https://www.zotero.org/download/, download, and put contents in /opt/zotero/ (using sudo)"
echo "Done? Hit Enter"
read response
sudo /opt/zotero/set_launcher_icon
ln -s /opt/zotero/zotero.desktop ~/.local/share/applications/zotero.desktop
# If we change location, update that in .emacs AND pandout.sh script
echo "Installation script complete"