s*******r 发帖数: 14 | 1 How to preset the background color and foreground color in Emacs for windows.
Under UNIX environment, I can set that in .Xdefaults file.
Thanks | b**s 发帖数: 67 | 2 put
set HOME=c:\home\superstar
in autoexec.bat
then put .emacs under c:\home\superstar
and put following in .eamcs
(setq default-frame-alist
'(
; (top . 0) (left . 0)
(width . 80)
(height . 31)
;;(cursor-color . "white")
(cursor-type . box)
(foreground-color . "black")
; (background-color . "rgb:f2/eb/da")
(background-color . "rgb:e6/e6/de")
(border-color . "rgb:e6/e6/de")
(vertical-scroll-bars . right)))
For det
【在 s*******r 的大作中提到】 : How to preset the background color and foreground color in Emacs for windows. : Under UNIX environment, I can set that in .Xdefaults file. : Thanks
|
|