forked from cjohansen/.emacs.d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appearance.el
58 lines (45 loc) · 1.89 KB
/
appearance.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
;; mode colors in rhtml mode
;;(custom-set-faces '(erb-face ((t (:background 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 (:inherit nil :stipple nil :background "Black" :foreground "White" :inverse-video nil :box nil :strike-t*hrough nil :overline nil :underline nil :slant normal :weight normal :width normal :height 105))))
'(fill-column 80)
'(highlight ((((class color) (min-colors 88) (background dark)) (:background "#111111"))))
'(mumamo-background-chunk-submode ((((class color) (min-colors 88) (background dark)) nil))))
(set-face-background 'region "#464740")
;; Highlight current line
(global-hl-line-mode 1)
;; Customize background color of lighlighted line
(set-face-background 'hl-line "#222222")
(if (eq window-system nil)
((set-face-foreground 'hl-line "#ffcccc")
(set-face-background 'hl-line "#000000")))
;; org-mode colors
(setq org-todo-keyword-faces
'(
("INPR" . (:foreground "yellow" :weight bold))
("DONE" . (:foreground "green" :weight bold))
("IMPEDED" . (:foreground "red" :weight bold))
))
;; Highlight matching parentheses when the point is on them.
(show-paren-mode 1)
;; No menu bars
(menu-bar-mode -1)
(when window-system
(setq frame-title-format '(buffer-file-name "%f" ("%b")))
(turn-off-tool-bar)
(tooltip-mode -1)
(turn-off-tool-bar)
(blink-cursor-mode -1))
(add-hook 'before-make-frame-hook 'turn-off-tool-bar)
;; Ditch them scrollbars
(scroll-bar-mode -1)
(provide 'appearance)
;; Subtler highlight in magit
(set-face-foreground 'magit-item-highlight nil)
(set-face-background 'magit-item-highlight "#282828")
(set-face-foreground 'magit-diff-none "#666666")
(set-face-foreground 'magit-diff-add "#00cc33")