-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el~
31 lines (27 loc) · 1.05 KB
/
init.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
(package-initialize)
;; (Add-to-list 'load-path "~/.emacs.d/lisp/")
(add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory))
(defun open-my-init-file()
(interactive)
(find-file "~/.emacs.d/init.el"))
;; Package Management
;;------------------------------------------------
(require 'init-packages)
(require 'init-better-default)
(require 'init-ui)
;; (require 'init-python)
(require 'init-org)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages
(quote
(evil flycheck elpy company-jedi company monokai-theme hungry-delete swiper counsel smartparens exec-path-from-shell popwin))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)