-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.el
97 lines (97 loc) · 3.67 KB
/
custom.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
(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)
'(mode-line-format
(quote
("%e"
(:eval
(let*
((active
(powerline-selected-window-active))
(mode-line
(if active
(quote mode-line)
(quote mode-line-inactive)))
(face1
(if active
(quote powerline-active1)
(quote powerline-inactive1)))
(face2
(if active
(quote powerline-active2)
(quote powerline-inactive2)))
(separator-left
(intern
(format "powerline-%s-%s" powerline-default-separator
(car powerline-default-separator-dir))))
(separator-right
(intern
(format "powerline-%s-%s" powerline-default-separator
(cdr powerline-default-separator-dir))))
(lhs
(list
(powerline-raw "%*" nil
(quote l))
(powerline-buffer-size nil
(quote l))
(powerline-raw mode-line-mule-info nil
(quote l))
(powerline-buffer-id nil
(quote l))
(when
(and
(boundp
(quote which-func-mode))
which-func-mode)
(powerline-raw which-func-format nil
(quote l)))
(powerline-raw " ")
(funcall separator-left mode-line face1)
(when
(boundp
(quote erc-modified-channels-object))
(powerline-raw erc-modified-channels-object face1
(quote l)))
(powerline-major-mode face1
(quote l))
(powerline-process face1)
(powerline-minor-modes face1
(quote l))
(powerline-narrow face1
(quote l))
(powerline-raw " " face1)
(funcall separator-left face1 face2)
(powerline-vc face2
(quote r))))
(rhs
(list
(funcall separator-right face2 face1)
(powerline-raw "%4l" face1
(quote l))
(powerline-raw ":" face1
(quote l))
(powerline-raw "%3c" face1
(quote r))
(funcall separator-right face1 mode-line)
(powerline-raw " ")
(powerline-raw "%6p" nil
(quote r))
(powerline-hud face2 face1))))
(concat
(powerline-render lhs)
(powerline-fill face2
(powerline-width rhs))
(powerline-render rhs)))))))
'(relative-line-numbers-delay 1)
'(show-paren-mode t)
'(text-mode-hook (quote (text-mode-hook-identify)))
'(tool-bar-mode nil))
(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 "Monaco" :foundry "outline" :slant normal :weight normal :height 98 :width normal)))))