Skip to content

Commit

Permalink
moved melpha to top so even when it fails it will get far enough to i…
Browse files Browse the repository at this point in the history
…nstall use-package. Use swifer
  • Loading branch information
rwilcox committed May 25, 2020
1 parent 562709b commit a391bd0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion init.el
Expand Up @@ -21,6 +21,8 @@

(package-initialize)

(add-to-list 'package-archives (cons "melpa" (concat "https" "://melpa.org/packages/")) t)

;; This is only needed once, near the top of the file
(eval-when-compile
;; Following line is not needed if use-package.el is in ~/.emacs.d
Expand All @@ -43,6 +45,7 @@
(use-package base16-theme)
(use-package persistent-scratch)
(use-package literate-calc-mode)
(use-package swiper)

;(add-to-list 'package-archives
; '("melpa-stable" . "https://stable.melpa.org/packages/") t)
Expand Down Expand Up @@ -105,6 +108,10 @@
[menu-bar mymenu sova]
'("Soulver: Evaluate buffer, append soulver-output" . soulver/script-eval-elisp-and-append-output-variable))

(define-key
global-map
[menu-bar mymenu fall]
'("Swiper: Find All" . swiper))

;; ================================================ END RPW Menu =======================
(eval-after-load 'esh-opt
Expand All @@ -129,7 +136,7 @@
'(markdown-list-indent-width 2)
'(package-selected-packages
(quote
(literate-calc-mode xterm-color use-package regex-tool rainbow-blocks markdown-mode imake devdocs color-theme-sanityinc-solarized base16-theme))))
(swiper literate-calc-mode xterm-color use-package regex-tool rainbow-blocks markdown-mode imake devdocs color-theme-sanityinc-solarized base16-theme))))

(custom-set-faces
;; custom-set-faces was added by Custom.
Expand Down

0 comments on commit a391bd0

Please sign in to comment.