-
Notifications
You must be signed in to change notification settings - Fork 0
/
load-path-package.el
67 lines (66 loc) · 2.2 KB
/
load-path-package.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
;; Package manager
(require 'package)
(require 'use-package)
(use-package quelpa-use-package :ensure t)
(add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/") t)
(add-to-list 'package-archives '("melpa-stable" . "http://stable.melpa.org/packages/") t)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
(setq package-pinned-packages '(
(ace-jump-mode . "melpa-stable")
(ag . "melpa-stable")
(async . "melpa-stable")
(avy . "melpa-stable")
(charmap . "melpa-stable")
(company . "gnu")
(company-math . "gnu")
(company-ngram . "melpa-stable")
(company-statistics . "gnu")
(company-web . "melpa-stable")
;; (dash . "melpa-stable")
;; (dash-functional . "melpa-stable")
(diminish . "melpa-stable")
(discover . "melpa-stable")
(ebib . "melpa-stable")
(emmet-mode . "melpa-stable")
;; (evil-surround . "melpa-stable")
(evil-org . "melpa-stable")
(evil-quickscope . "melpa-stable")
(evil-numbers . "melpa-stable")
(evil-matchit . "melpa-stable")
(evil-leader . "melpa-stable")
;; (evil-exchange . "melpa-stable")
(evil . "melpa-stable")
(git-commit . "melpa-stable")
(git-timemachine . "melpa-stable")
(google-this . "melpa-stable")
(helm-ag . "melpa-stable")
(helm-org-rifle . "melpa-stable")
(hydra . "melpa-stable")
(image+ . "melpa-stable")
(inflections . "melpa-stable")
(langtool . "melpa-stable")
(helm . "melpa-stable")
(helm-core . "melpa-stable")
(htmlize . "melpa-stable")
(magit . "melpa-stable")
(magit-popup . "melpa-stable")
(magit-svn . "melpa-stable")
(makey . "melpa-stable")
(markdown-mode . "melpa-stable")
(operate-on-number . "melpa-stable")
(org . "gnu")
(org2blog . "melpa-stable")
(pandoc . "melpa-stable")
(powershell . "melpa-stable")
(projectile . "melpa-stable")
(rdf-prefix . "melpa-stable")
(smartrep . "melpa-stable")
(transient . "melpa-stable")
(use-package . "melpa-stable")
(undo-tree . "melpa-stable")
(which-key . "melpa-stable")
(with-editor . "melpa-stable")
(writegood-mode . "melpa-stable")
(yasnippet . "melpa-stable")
))
(package-initialize)