Last active
January 10, 2018 21:05
-
-
Save dustinlacewell-wk/1c188764f4b446c0be0e7763886a6930 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
(setq package-archives '(("MELPA" . "http://melpa.org/packages/") | |
("ELPA" . "http://tromey.com/elpa/") | |
("gnu" . "http://elpa.gnu.org/packages/"))) | |
(package-initialize) | |
(package-refresh-contents) | |
(package-install 'use-package) | |
(package-install 'req-package) | |
(require 'use-package) | |
(require 'req-package) | |
;; (setq use-package-always-ensure t) | |
(use-package helm | |
:ensure t) | |
;; (req-package-finish) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment