Created
June 4, 2015 05:58
-
-
Save scrogson/f99fb8f739dbb49116ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; init.el --- | |
;;; Commentary: | |
;; | |
;;; Code: | |
(package-initialize) | |
(require 'cask "/usr/local/share/emacs/site-lisp/cask.el") | |
(cask-initialize) | |
(add-to-list 'load-path (expand-file-name "bundles" user-emacs-directory)) | |
;; To require a specfic bundle just require it for example... | |
(require 'evil-bundle) | |
(provide 'init) | |
;;; init.el ends here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment