forked from magnars/.emacs.d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappearance.el
38 lines (28 loc) · 990 Bytes
/
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
(setq visible-bell t
font-lock-maximum-decoration t
color-theme-is-global t
truncate-partial-width-windows 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")
;; Highlight in yasnippet
(set-face-background 'yas/field-highlight-face "#333399")
(set-face-foreground 'font-lock-warning-face "#ff6666")
;; 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)
(when window-system
(setq frame-title-format '(buffer-file-name "%f" ("%b")))
(tooltip-mode -1)
(blink-cursor-mode -1))
;; Make zooming affect frame instead of buffers
(require 'zoom-frm)
(provide 'appearance)