Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/keelerm84/.emacs.d_old

Configuration Files for Emacs
https://github.com/keelerm84/.emacs.d_old

Last synced: 17 days ago
JSON representation

Configuration Files for Emacs

Awesome Lists containing this project

README

        

# .emacs.d Configuration #

This repo provides all of my emacs customizations, allowing for quick setup on new machines. A big thanks to magnars, from whom I stole most of this. ;) Watch his excellent videos at [Emacs Rocks](http://emacsrocks.com).

## Setup ##

To grab all the dependencies, either:

git clone git://github.com/keelerm84/.emacs.d.git
cd .emacs.d
git submodule init
git submodule update --recursive

CEDET 1.1 needs downloaded and built:

Download and extract cedet 1.1 to .emacs.d/site-lisp/cedet-1.1
cd .emacs.d/site-lisp/cedet-1.1
make clean
make

## Known Issues ##
### SLIME ###
There is currently a problem with slime when connecting to a browser. It will occassionally hang due to some conflict. Until this is resolved, you need to edit slime-fancy.el and remove the reference to auto-doc.
### Cedet / Semantic ###
Semantic will throw a wisent parse error when working in JavaScript, resulting in Emacs freezing. To resolve this, edit semantic.el and wrap the while loop in semantic-repeat-parse-whole-stream with save-excursion.