-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
41 lines (34 loc) · 1.3 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
32
33
34
35
36
37
38
39
40
41
(add-to-list 'load-path "~/.source/org-mode/lisp")
(require 'package)
(setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
("melpa" . "https://melpa.org/packages/")))
(package-initialize)
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(eval-when-compile
(require 'use-package))
(org-babel-load-file
(expand-file-name
"config.org"
user-emacs-directory))
;; (load "~/.emacs.d/packages/baremeow.el")
;; (load "~/.emacs.d/packages/meow.el")
(load "~/.emacs.d/evil.el")
(load "~/.secret_dotfiles/emacs/env.el")
;; (custom-set-variables
;; '(auth-source-save-behavior nil))
(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.
'(auth-source-save-behavior nil)
'(package-selected-packages nil)
'(package-vc-selected-packages '((zoxide :url "https://gitlab.com/Vonfry/zoxide.el"))))
(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.
)