Last active
December 28, 2017 01:56
-
-
Save megane42/54e4655084848ca73edc70f5ded3c915 to your computer and use it in GitHub Desktop.
installing emacs
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
# ------------------------------- | |
# making workspace | |
mkdir ~/src | |
# ------------------------------- | |
# installing emacs24 | |
cd ~/src | |
wget http://public.p-knowledge.co.jp/gnu-mirror/emacs/emacs-25.3.tar.gz | |
tar xf emacs-25.3.tar.gz | |
cd emacs-25.3 | |
./configure --without-x | |
make | |
sudo make install | |
# ------------------------------- | |
# insatlling migemo | |
cd ~/src | |
git clone https://github.com/koron/cmigemo | |
cd cmigemo | |
sudo yum install -y nkf | |
./configure | |
make gcc | |
make gcc-dict | |
sudo make gcc-install | |
# ------------------------------- | |
# making .emacs.d | |
cd ~ | |
git clone https://github.com/megane42/dotemacs.git .emacs.d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curl -s https://gist.githubusercontent.com/megane42/54e4655084848ca73edc70f5ded3c915/raw/installing_emacs.sh | /bin/bash
Note that it requires you can
sudo
without password.