Created
August 25, 2022 12:22
-
-
Save dylan-sessler/abcc4ebeb586f53472cce5272ce9f87c to your computer and use it in GitHub Desktop.
package set up
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
(progn | |
(require 'package) | |
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) | |
(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t) | |
(package-initialize) | |
) ;; Package.el setup | |
(progn | |
(unless (package-installed-p 'use-package) | |
(package-refresh-contents) | |
(package-install 'use-package)) | |
(require 'use-package) | |
(require 'bind-key) | |
) ;; use-package setup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment