Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
;;;---------------------------------------------------------------------
;;; Get a decent font, color, and sound scheme
;;; Author: Curtis Clifton
;;;---------------------------------------------------------------------
(setq default-frame-alist
'((top . 2) (left . 65)
(width . 112) (height . 60)
(cursor-color . "yellow")
(cursor-type . box)
(foreground-color . "khaki")
(background-color . "black")
(font . "-outline-Lucida Console-normal-r-normal-normal-18-*-96-96-c-*-iso8859-1")
))
(setq initial-frame-alist '((top . 2) (left . 35)))
(set-message-beep 'hand)
(set-face-foreground 'region "#000000")
(set-face-background 'region "#a0a0a0")
(set-foreground-color "khaki") ;; for scroll bar
(set-background-color "black")
(set-cursor-color "yellow")
(set-face-foreground 'default "khaki")
(set-face-background 'default "black")
(set-face-foreground 'modeline "black")
(set-face-background 'modeline "burlywood")
(font-lock-mode) ;; need this before fixing the colors below
(set-face-foreground 'font-lock-comment-face "green1")
(set-face-background 'font-lock-comment-face "black")
(set-face-foreground 'font-lock-function-name-face "lime green")
(set-face-foreground 'font-lock-variable-name-face "green yellow")
(set-face-foreground 'font-lock-constant-face "red")
(set-face-foreground 'font-lock-builtin-face "magenta")
(set-face-foreground 'font-lock-type-face "azure4")
(set-face-foreground 'font-lock-keyword-face "goldenrod")
(set-face-foreground 'font-lock-string-face "DodgerBlue1")
;;; Color the heck out of things
(global-font-lock-mode 1)
(setq font-lock-auto-fontify t)
(setq font-lock-support-mode 'lazy-lock-mode)
(setq font-lock-maximum-decoration 3) ; was t not 3