2006
Apr
24th
備忘として。
;; -*- coding: euc-jp-unix
(set-terminal-coding-system 'euc-jp)
;; Exchange C-h to Del
(global-set-key "\C-h" 'backward-delete-char-untabify)
;; Color
(if window-system
(progn
(setq initial-frame-alist '((width . 80) (height . 35)))
(set-background-color "RoyalBlue4")
(set-foreground-color "LightGray")
(set-cursor-color "Gray")
))
; selected part
(setq transient-mark-mode t)
; when active
(set-frame-parameter (selected-frame) 'active-alpha 0.9)
; when inactive
(set-frame-parameter (selected-frame) 'inactive-alpha 0.7)
;; Hide tool bar
(tool-bar-mode nil)
Posted by setomits at 01:06 |
Comments: 0