-
Notifications
You must be signed in to change notification settings - Fork 0
/
looks.el
41 lines (30 loc) · 1.06 KB
/
looks.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
;;----------------------- Cursor ------------------------
(setq cursor-type "box")
;;----------------------- Fonst ------------------------
; Font size, type, position, etc...
;; (setq default-frame-alist
;; '(
;; (font . "-*-lucidatypewriter-*-*-*-*-14-140-*-*-*-*-*")
;; (frame-title-format '("%b"))
;; ))
(set-default-font "Inconsolata-11")
;;------------------ Emacs Colors ----------------------
; Background color for X.
(if ( or (eq window-system 'w32) (eq window-system 'x))
(set-background-color "DarkSlateGray"))
(set-foreground-color "white") ; Font color
(set-mouse-color "black") ; Mouse color
(set-cursor-color "blue") ; Cursor color
;;------------------------ Misc Things -----------------------
; Use color highlighting if supported
(global-font-lock-mode t)
; Let parentheses be closed
(show-paren-mode 1)
; Constants
'(font-lock-constant-face ((((class color) (background light)) (:foreground "#6446ad"))))
; Colors for the mark region
(setq transient-mark-mode t)
; No toolbar
(tool-bar-mode -1)
; Yes menubar
(menu-bar-mode 1)