Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chrisbarrett/dot-emacs.old
My old emacs config. DEPRECATED.
https://github.com/chrisbarrett/dot-emacs.old
Last synced: 16 days ago
JSON representation
My old emacs config. DEPRECATED.
- Host: GitHub
- URL: https://github.com/chrisbarrett/dot-emacs.old
- Owner: chrisbarrett
- Created: 2013-04-02T13:11:35.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-30T03:33:07.000Z (almost 10 years ago)
- Last Synced: 2023-04-03T19:47:26.061Z (over 1 year ago)
- Language: Emacs Lisp
- Homepage:
- Size: 12.5 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.org
Awesome Lists containing this project
README
#+AUTHOR: Chris Barrett
* Dot-Emacs
** Description
This is my personal Emacs configuration. It is obviously very personalised and
you'd be crazy to use it as-is.
** Installation
Requires GNU Make, curl and Git.#+begin_src sh
cd
mv .emacs.d .emacs.d.backup
git clone [email protected]:chrisbarrett/dot-emacs.git .emacs.d
cd .emacs.d
make
#+end_srcAdditional features can be installed using =make all=, or using the individual
tasks in the makefile (e.g. =make ruby=). I pretty much only test on my machine,
so YMMV.The load sequence will search for a file called =personal-config.el=, which is a
good place to put things like your gnus server configuration, email address,
etc.#+begin_src emacs-lisp
(setq user-full-name "Jane Coder"
user-mail-address "[email protected]");; SMTP
(setq smtpmail-mail-address user-mail-address
smtpmail-smtp-server "smtp.foo.bar.com")(provide 'personal-config)
#+end_src