aboutsummaryrefslogtreecommitdiffstats

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.

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