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

Chizi123
2019-05-18 dc8eb0c8f0b842503da51a73dec2a7d9487f3047
commit | author | age
990949 1 ;; Repos
C 2 (require 'package)
3 (setq package-archives '(("gnu"   . "http://elpa.gnu.org/packages/")
4              ("melpa" . "https://melpa.org/packages/")
5              ("org"   . "https://orgmode.org/elpa/")))
6 (package-initialize)
7
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))
15
16 ;; auto-package-update
17 (use-package auto-package-update
18   :ensure t
19   :config
20   (setq auto-package-update-delete-old-versions t)
21   (setq auto-package-update-hide-results t)
22   (auto-package-update-maybe))
23
24 ;; diminish
25 (use-package diminish
26   :ensure t)
27
28 ;; redirect to org config file
29 (when (file-readable-p "~/.emacs.d/config.org")
30   (org-babel-load-file "~/.emacs.d/config.org"))
31
32 (custom-set-variables
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.
412080 37  '(custom-safe-themes
dc8eb0 38    (quote
C 39     ("6b2636879127bf6124ce541b1b2824800afc49c6ccd65439d6eb987dbf200c36" default)))
40  '(ede-project-directories (quote ("c:/Users/joelg/.emacs.d")))
8a38cc 41  '(line-number-mode nil)
990949 42  '(package-selected-packages
dc8eb0 43    (quote
C 44     (org elscreen doom-themes csv-mode 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))))
990949 45 (custom-set-faces
C 46  ;; custom-set-faces was added by Custom.
47  ;; If you edit it by hand, you could mess it up, so be careful.
48  ;; Your init file should contain only one such instance.
49  ;; If there is more than one, they won't work right.
dc8eb0 50  '(default ((t (:foreground "#DCDCCC" :background "#3F3F3F")))))
990949 51 (put 'narrow-to-page 'disabled nil)
C 52 (put 'narrow-to-region 'disabled nil)
412080 53 (put 'list-timers 'disabled nil)