Last active
August 29, 2015 14:03
-
-
Save qinjian623/d5d3e9555747221d4d4e to your computer and use it in GitHub Desktop.
Install my emacs config for python/c/c++/emacs lisp development on ubuntu.
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
## 安装依赖包 | |
sudo apt-get install -y emacs24 python-pip clang git | |
## 安装pip依赖 | |
sudo pip install elpy jedi flake8 virtualenv rope | |
## 下载配置文件 | |
cd ~ | |
mv .emacs.d emacs.d.backup | |
mv .emacs emacs.backup | |
git clone https://github.com/qinjian623/emacs-config.git .emacs.d | |
cd .emacs.d | |
## 使用新版本git才可以工作,不过应该都可以满足 | |
git checkout dev | |
git submodule init && git submodule update | |
## 等待emacs执行jedi:install-server | |
emacs24 --eval "(jedi:install-server)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment