Skip to content

Instantly share code, notes, and snippets.

@megane42
Last active December 28, 2017 01:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save megane42/54e4655084848ca73edc70f5ded3c915 to your computer and use it in GitHub Desktop.
Save megane42/54e4655084848ca73edc70f5ded3c915 to your computer and use it in GitHub Desktop.
installing emacs
# -------------------------------
# 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
@megane42
Copy link
Author

megane42 commented Feb 27, 2017

curl -s https://gist.githubusercontent.com/megane42/54e4655084848ca73edc70f5ded3c915/raw/installing_emacs.sh | /bin/bash

Note that it requires you can sudo without password.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment