-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinit.el
102 lines (90 loc) · 4.34 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
;; Boot
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
(setq gc-cons-threshold (* 50 1000 1000))
(progn (setq emacs-d
(file-name-directory
(or (buffer-file-name)
(file-chase-links load-file-name))))
(add-to-list 'load-path (concat emacs-d "etude"))
(add-to-list 'load-path (concat emacs-d "dev/" "eta"))
(add-to-list 'load-path (concat emacs-d "dev/" "eta-hydra"))
(add-to-list 'load-path (concat emacs-d "dev/" "eta-logger")))
(setq use-package-always-ensure nil)
;; Core
(require 'etude-boot)
(use-package ht :ensure t)
(use-package hydra :ensure t)
(use-package pretty-hydra :ensure t)
(use-package cider :ensure t)
(use-package doom-modeline :ensure t)
(use-package counsel-projectile :ensure t)
(use-package vterm :ensure t)
(require 'eta)
(require 'eta-hydra)
(require 'eta-logger)
(require 'etude-core)
(require 'etude-bindings)
(require 'etude-foundation)
(progn
(eta-logger-start))
(if (not (window-system))
(custom-set-faces
'(custom-comment ((t (:foreground "color-115"))))
'(font-lock-comment-delimiter-face ((t (:foreground "color-243"))))
'(font-lock-comment-face ((t (:foreground "color-243"))))
'(font-lock-doc-face ((t (:foreground "color-243"))))
'(org-block-begin-line ((t (:foreground "color-99"))))
'(org-block-end-line ((t (:foreground "color-92"))))
'(org-meta-line ((t (:foreground "yellow"))))
'(org-link ((t (:foreground "brightblue" :underline nil)))))
(custom-set-faces
'(org-block-begin-line ((t (:foreground "Purple"))))
'(org-block-end-line ((t (:foreground "DarkOrchid"))))
'(org-meta-line ((t (:foreground "gold1"))))
'(org-hide ((t (:foreground "gray50" :underline nil))))
'(org-link ((t (:foreground "turquoise3" :underline nil))))))
(setq gc-cons-threshold (* 2 1000 1000))
(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.
'(custom-comment ((t (:foreground "color-115"))))
'(eros-result-overlay-face ((t (:background "black" :box (:line-width -1 :color "black")))))
'(font-lock-comment-delimiter-face ((t (:foreground "color-243"))))
'(font-lock-comment-face ((t (:foreground "color-243"))))
'(font-lock-doc-face ((t (:foreground "color-243"))))
'(goggles-added ((t (:background "brightblack"))))
'(goggles-changed ((t (:background "brightblack"))))
'(goggles-removed ((t (:extend t :background "brightblack"))))
'(org-block-begin-line ((t (:foreground "color-99"))))
'(org-block-end-line ((t (:foreground "color-92"))))
'(org-hide ((t (:foreground "gray50" :underline nil))))
'(org-link ((t (:foreground "brightblue" :underline nil))))
'(org-meta-line ((t (:foreground "yellow")))))
(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.
'(blink-cursor-mode nil)
'(custom-safe-themes
'("46f5e010e0118cc5aaea1749cc6a15be4dfce27c0a195a0dff40684e2381cf87" default))
'(doom-modeline-icon nil)
'(eros-mode t)
'(global-linum-mode nil)
'(nord-comment-brightness 20)
'(org-babel-load-languages
'((emacs-lisp . t)
(js . t)
(python . t)
(shell . t)
(dot . t)
(java . t)))
'(org-mouse-1-follows-link 'double)
'(org-support-shift-select 'always)
'(package-selected-packages
'(doom-modeline-mode lua-mode irony ibuffer-projectile eta nginx-mode format-all ob-async plain-org-wiki org-cliplink auto-highlight-symbol doom-modeline nord-theme ivy-rich counsel-projectile counsel swiper wgrep ivy smex treemacs-projectile treemacs dashboard projectile ranger dired-filter dired-collapse dired-subtree no-littering impatient-mode yasnippet goto-chg iedit undo-tree goggles bufler ace-window which-key tldr helpful multi-vterm vterm exec-path-from-shell midje-mode cider rainbow-delimiters paredit smartparens git-gutter graphviz-dot-mode markdown-mode dockerfile-mode yaml-mode company pretty-hydra hydra f ht dash s use-package)))