Corey Oliver, 2012
My emacs configuration. The layout is modeled after Mike Douglas's dotemacs.
Create a .emacs
or _emacs
file in your home directory with the
following contents:
(setq load-path (cons "~/.emacs.d" load-path))
(load "init")
Check out this repository into the directory ~/.emacs.d
with the following command:
git clone --recursive <repository> ~/.emacs.d
custom
- personal customizations.my-buffers.el
- buffer preferences.my-keys.el
- key bindings.my-misc.el
- custom settings which don't neatly fit anywhere else.my-modes.el
- mode preferences.my-ui.el
- user-interface settings, such as the default color-theme and font.
utilities
- useful miscellaneous functions.vendor
- third-party plug-ins.
Copyright (c) 2012, Corey Oliver, corey.jon.oliver@gmail.com
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.