-
-
Save vishnuixm/961e539ddf970d1ebf662c928f67a948 to your computer and use it in GitHub Desktop.
Install Emacs and Spacemacs on Ubuntu
This file contains hidden or 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
sudo apt-get install -y build-essential wget gcc g++ texinfo libx11-dev libxpm-dev libjpeg-dev libpng-dev libgif-dev libtiff-dev libgtk2.0-dev libncurses-dev | |
#Download Emacs 24.5+ source code | |
wget ftp://ftp.gnu.org/pub/gnu/emacs/emacs-24.5.tar.gz | |
tar -zxvf emacs-24.5.tar.gz | |
cd emacs-24.5 | |
./configure | |
make | |
sudo make install | |
#Download spacemacs and install | |
git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment