Code style
This commit is contained in:
parent
fbc6d1559a
commit
4ab668ddef
1 changed files with 4 additions and 2 deletions
|
@ -35,12 +35,14 @@
|
|||
(require 'cl)
|
||||
(require 'package)
|
||||
|
||||
;; accessing a package repo over https on Windows is a no go, so we
|
||||
;; fallback to http there
|
||||
(if (eq system-type 'windows-nt)
|
||||
(add-to-list 'package-archives
|
||||
'("melpa" . "http://melpa.org/packages/") t)
|
||||
(add-to-list 'package-archives
|
||||
'("melpa" . "https://melpa.org/packages/") t)
|
||||
)
|
||||
'("melpa" . "https://melpa.org/packages/") t))
|
||||
|
||||
;; set package-user-dir to be relative to Prelude install path
|
||||
(setq package-user-dir (expand-file-name "elpa" prelude-dir))
|
||||
(package-initialize)
|
||||
|
|
Loading…
Reference in a new issue