2007
Mar
19th
Carbon Emacsがアップデートされてる!半透明の設定がちょっと変わったんですね。
ということで、今の .emacs.el
;; Exchange C-h to Del
(global-set-key "\C-h" 'backward-delete-char-untabify)
;; Display
(if window-system
(progn
(setq initial-frame-alist '((width . 80) (height . 35)))
(set-background-color "RoyalBlue4")
(set-foreground-color "LightGray")
(set-cursor-color "Gray")
))
(setq transient-mark-mode t) ; selected part
(set-alpha '(90 70)) ; alpha
(tool-bar-mode nil) ; hide tool bar
(column-number-mode 1) ; show column and line number
Posted by setomits at 07:11 |
Comments: 0