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 |
b5e027
|
40 |
(magit minesweeper speed-type spray fireplace powershell company-auctex company-bibtex company-irony-c-headers company-reftex gnuplot-mode gnuplot 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 nyan-mode latex-preview-pane helm-projectile ggtags flycheck-pos-tip flycheck-clang-analyzer company-math company-c-headers clean-aindent-mode auto-package-update)))) |
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 |
) |
b1d01d
|
47 |
(put 'narrow-to-page 'disabled nil) |
C |
48 |
(put 'narrow-to-region 'disabled nil) |