larrywright / emacs
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
emacs /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Fri Jul 24 14:25:00 -0700 2009 | |
| |
.gitmodules | Mon Jul 27 18:46:43 -0700 2009 | |
| |
README.textile | Mon Jun 15 08:51:40 -0700 2009 | |
| |
config/ | Mon Nov 23 08:09:09 -0800 2009 | |
| |
emacs.el | Thu Jan 22 14:13:21 -0800 2009 | |
| |
init.el | Fri Jul 31 14:41:33 -0700 2009 | |
| |
snippets/ | Mon Jul 27 09:26:47 -0700 2009 | |
| |
vendor/ | Mon Nov 23 07:28:46 -0800 2009 |
README.textile
My emacs configuration
Please note that much of this is cribbed straight from Chris Wanstrath’s config at http://github.com/defunkt/emacs, with pieces from Jim Weirich’s configuration as well: http://github.com/jimweirich/emacs-setup/.
check into ~/.emacs.d
cd into ~/.emacs.d/
Run the following commands:
git submodule init git submodule updateThe rinari submodule in vendor/rinari has submodules of it’s own, so we need to repeat the process:
cd vendor/rinari git submodule init git submodule updateFinally, create a file called ~/.emacs and place the following two lines in it:
(add-to-list ’load-path “~/.emacs.d”) (load “~/.emacs.d/init.el”)You can put local configurations in config/custom.el. Any passwords should go in ~/.emacs.d/.passwords. Both of these files are ignored by Git.
