Created
May 4, 2020 08:34
-
-
Save fleutot/d4b1cb70e7b1f47eb8764b45fe28380b 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
| (require 'package) | |
| (setq package-enable-at-startup nil) | |
| (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) | |
| (add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/")) | |
| (add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")) | |
| (add-to-list 'package-archives '("melpamilk" . "http://melpa.milkbox.net/packages/")) | |
| (package-initialize) | |
| (unless (package-installed-p 'use-package) | |
| (package-refresh-contents) | |
| (package-install 'use-package)) | |
| (eval-when-compile | |
| (require 'use-package)) | |
| (require 'bind-key) | |
| ;;; ... | |
| (use-package magit | |
| :ensure t) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment