Skip to content

Instantly share code, notes, and snippets.

@qinjian623
Last active August 29, 2015 14:03
Show Gist options
  • Save qinjian623/d5d3e9555747221d4d4e to your computer and use it in GitHub Desktop.
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.
## 安装依赖包
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