mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 11:09:29 +00:00
Correl Roush
9acd47448b
Just adding it for now; will enable integrations and have it replace package.el once the use-package integration gets sorted out.
35 lines
1.1 KiB
EmacsLisp
35 lines
1.1 KiB
EmacsLisp
(require 'package)
|
|
(package-initialize)
|
|
|
|
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
|
|
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
|
|
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/") t)
|
|
|
|
(setq straight-enable-use-package-integration nil)
|
|
(setq straight-enable-package-integration nil)
|
|
|
|
(let ((bootstrap-file (concat user-emacs-directory "straight/bootstrap.el"))
|
|
(bootstrap-version 2))
|
|
(unless (file-exists-p bootstrap-file)
|
|
(with-current-buffer
|
|
(url-retrieve-synchronously
|
|
"https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
|
|
'silent 'inhibit-cookies)
|
|
(goto-char (point-max))
|
|
(eval-print-last-sexp)))
|
|
(load bootstrap-file nil 'nomessage))
|
|
|
|
(unless (package-installed-p 'use-package)
|
|
(progn
|
|
(package-refresh-contents)
|
|
(package-install 'use-package)
|
|
(package-initialize)))
|
|
|
|
(eval-and-compile
|
|
(defvar use-package-verbose t)
|
|
(require 'use-package))
|
|
|
|
(use-package org
|
|
:ensure org-plus-contrib)
|
|
|
|
(org-babel-load-file "~/.emacs.d/emacs.org")
|