mirror of https://github.com/Chizi123/.emacs.d.git

Chizi123
2019-01-29 0b811ae54903995e8716a5878483861536ac8c41
commit | author | age
a4b917 1 ;; Repos
5cb5f7 2 (require 'package)
d070a7 3 (setq package-archives '(("gnu"   . "http://elpa.gnu.org/packages/")
C 4              ("melpa" . "https://melpa.org/packages/")
5              ("org"   . "https://orgmode.org/elpa/")))
6 (package-initialize)
a4b917 7
C 8 ;; use-package
9 (unless (package-installed-p 'use-package)
10   (package-refresh-contents)
11   (package-install 'use-package))
12
13 (eval-when-compile
14   (require 'use-package))
5cb5f7 15
707431 16 ;; auto-package-update
C 17 (use-package auto-package-update
9c4cf0 18   :ensure t
707431 19   :config
e75a20 20   (setq auto-package-update-delete-old-versions t)
C 21   (setq auto-package-update-hide-results t)
22   (auto-package-update-maybe))
23
d070a7 24 ;; diminish
C 25 (use-package diminish
26   :ensure t)
707431 27
d070a7 28 ;; redirect to org config file
C 29 (when (file-readable-p "~/.emacs.d/config.org")
30   (org-babel-load-file "~/.emacs.d/config.org"))
de1920 31
ffe3f5 32 (custom-set-variables
C 33  ;; custom-set-variables was added by Custom.
34  ;; If you edit it by hand, you could mess it up, so be careful.
35  ;; Your init file should contain only one such instance.
36  ;; If there is more than one, they won't work right.
de1920 37  '(ede-project-directories (quote ("c:/Users/joelg/.emacs.d")))
C 38  '(package-selected-packages
39    (quote
0b811a 40     (matlab-mode diminish keyfreq zenburn-theme yasnippet x86-lookup workgroups2 which-key volatile-highlights use-package undo-tree srefactor smartparens racket-mode popwin plantuml-mode pdf-tools org-bullets org nyan-mode magit latex-preview-pane helm-projectile ggtags flycheck-pos-tip flycheck-clang-analyzer company-math company-c-headers clean-aindent-mode auto-package-update auctex))))
ffe3f5 41 (custom-set-faces
C 42  ;; custom-set-faces was added by Custom.
43  ;; If you edit it by hand, you could mess it up, so be careful.
44  ;; Your init file should contain only one such instance.
45  ;; If there is more than one, they won't work right.
46  )