-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.emacs
98 lines (82 loc) · 3.42 KB
/
.emacs
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
(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.
'(ansi-color-faces-vector
[default default default italic underline success warning error])
'(ansi-color-names-vector
["black" "red3" "ForestGreen" "yellow3" "blue" "magenta3" "DeepSkyBlue" "gray50"])
'(company-quickhelp-color-background "#4F4F4F")
'(company-quickhelp-color-foreground "#DCDCCC")
'(custom-enabled-themes (quote (tango-dark)))
'(custom-safe-themes
(quote
("bffa9739ce0752a37d9b1eee78fc00ba159748f50dc328af4be661484848e476" "a7051d761a713aaf5b893c90eaba27463c791cd75d7257d3a8e66b0c8c346e77" "84890723510d225c45aaff941a7e201606a48b973f0121cb9bcb0b9399be8cba" "7e7c9639e7b83c3271e427becc0336b85116cee201b11b7b8e9e9474c812633d" "b46ee2c193e350d07529fcd50948ca54ad3b38446dcbd9b28d0378792db5c088" default)))
'(fci-rule-color "#383838")
'(nrepl-message-colors
(quote
("#CC9393" "#DFAF8F" "#F0DFAF" "#7F9F7F" "#BFEBBF" "#93E0E3" "#94BFF3" "#DC8CC3")))
'(org-agenda-files (quote ("~/Dropbox/org/home.org" "~/Dropbox/org/cdr.org")))
'(package-selected-packages
(quote
(spacemacs-theme zenburn-theme labburn-theme dracula-theme markdown-mode)))
'(pdf-view-midnight-colors (quote ("#DCDCCC" . "#383838")))
'(rainbow-identifiers-choose-face-function (quote rainbow-identifiers-cie-l*a*b*-choose-face) t)
'(rainbow-identifiers-cie-l*a*b*-color-count 1024 t)
'(rainbow-identifiers-cie-l*a*b*-lightness 80 t)
'(rainbow-identifiers-cie-l*a*b*-saturation 25 t)
'(tool-bar-mode nil)
'(vc-annotate-background "#2B2B2B")
'(vc-annotate-color-map
(quote
((20 . "#BC8383")
(40 . "#CC9393")
(60 . "#DFAF8F")
(80 . "#D0BF8F")
(100 . "#E0CF9F")
(120 . "#F0DFAF")
(140 . "#5F7F5F")
(160 . "#7F9F7F")
(180 . "#8FB28F")
(200 . "#9FC59F")
(220 . "#AFD8AF")
(240 . "#BFEBBF")
(260 . "#93E0E3")
(280 . "#6CA0A3")
(300 . "#7CB8BB")
(320 . "#8CD0D3")
(340 . "#94BFF3")
(360 . "#DC8CC3"))))
'(vc-annotate-very-old-color "#DC8CC3"))
(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.
'(default ((t (:family "Source Code Pro" :foundry "ADBO" :slant normal :weight normal :height 120 :width normal)))))
(require 'recentf)
(recentf-mode 1)
(require 'org)
(define-key global-map "\C-cl" 'org-store-link)
(define-key global-map "\C-ca" 'org-agenda)
(setq org-log-done t)
(setq org-todo-keywords
'((sequence "TODO" "WAIT" "|" "DONE")))
(setq org-todo-keyword-faces
'(("TODO" . "cyan") ("WAIT" . "magenta")
("DONE" . "blue")))
(setq org-priority-faces '((?A . (:foreground "red" :weight 'bold))
(?B . (:foreground "orange"))
(?C . (:foreground "green"))))
(global-visual-line-mode)
(require 'package)
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/"))
(package-initialize)
(global-set-key "\C-xf" 'recentf-open-files)
;;Add MELPA repository
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") t)
(setq org-use-speed-commands t)
(add-to-list 'org-speed-commands-user (cons "S" 'widen))