Last active
May 4, 2020 09:39
-
-
Save fleutot/59e719367bc74fbe61d1233f14785e7c to your computer and use it in GitHub Desktop.
For loading emacs packages with use-package
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
| (package-initialize) | |
| (unless package-archive-contents | |
| (package-refresh-contents)) | |
| (unless (package-installed-p 'use-package) | |
| (package-install use-package)) | |
| (require 'use-package) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment