aboutsummaryrefslogtreecommitdiffstats
path: root/README.rst
blob: b53bfaf4bd233a22b98537a2ca910e4ca0ba0045 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
####################
Jason's Emacs Config
####################

I use org-babel to create a literate config file. If you would just like to browse the config you can do so here:

If you are looking to just blindly install and use it then clone this repository and load ``config.org`` at the top of your init file.

.. code:: shell

   git clone git@beehive.io:jason/dotemacs.git ~/.emacs.d
   cat > ~/.emacs.d/init.el <<EOF
   (defconst emacs-start-time (current-time))
   (require 'org)
   (org-babel-load-file "~/.emacs.d/config.org")

   (add-hook 'after-init-hook
             (lambda ()
	       (message "Emacs loaded in %.3fs"
                      (/ (- (zzq/time-to-msec (current-time)) (zzq/time-to-msec emacs-start-time)) 1000.0))))
   EOF