-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
51 lines (43 loc) · 2.18 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
42
43
44
45
46
47
48
49
50
51
; start package.el with emacs
(require 'package)
;; add MELPA to repository list
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
;; Comment/uncomment this line to enable MELPA Stable if desired. See `package-archive-priorities`
;; and `package-pinned-packages`. Most users will not need or want to do this.
;; (add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t)
;; initialize package.el
(package-initialize)
;; add local lisp folder to load-path
(add-to-list 'load-path "~/.emacs.d/lisp")
;; add local custom configs to load path
(add-to-list 'load-path "~/.emacs.d/configs")
;; set default directory (e.g. for C-x-s and C-x-f)
(setq default-directory "~/")
(require 'my_style)
(require 'my_ghosttext)
(require 'my_leetcode)
(require 'my_git)
(require 'my_keybindings)
(require 'my_autocompletion)
;; (require 'my_multiterm)
(require 'my_projectile)
(require 'my_helm)
;; (require 'my_dap_mode)
(require 'my_org_mode)
(require 'my_pdf_mode)
(require 'my_clang_format)
(provide 'init)
(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.
'(custom-enabled-themes '(modus-vivendi use-package))
'(package-selected-packages
'(atomic-chrome doom-modeline modus-themes zenburn-theme yaml-mode tramp-term tramp spacemacs-theme solo-jazz-theme solarized-theme quelpa-use-package pdf-tools ox-latex-subfigure org-noter multiple-cursors multi-term material-theme magit leuven-theme highlight-parentheses helm-w3m helm-tramp helm-projectile helm-gtags helm-bibtex helm-ag ggtags ein dockerfile-mode docker-tramp dap-mode cuda-mode copilot company-tabnine company-irony-c-headers company-irony company-anaconda color-theme-sanityinc-tomorrow cmake-mode clang-format+ autopair auctex apropospriate-theme anti-zenburn-theme ag)))
(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.
)