;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Set Japanese Environment ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(set-language-environment "Japanese")
Emacs起動位置、サイズ、文字の色や背景
(setq default-frame-alist
(append (list
'(top . 30); 起動時の表示位置(右から)
'(left . 200) ; 起動時の表示位置(左から)
'(width . 80) ; 起動時のサイズ(幅)
'(height . 45) ; 起動時のサイズ(縦)
'(foreground-color . "#000000") ; 文字の色
'(background-color . "old lace") ; 背景の色
'(font . "fontset-tt14") ; 使うフォントセット
)
default-frame-alist))
キーワードを色で強調表示させる。ON(t)/OFF(f)
(global-font-lock-mode t)
現在の設定:
;; Set Japanese Environment ;;
(set-language-environment "Japanese")
(setq default-frame-alist
(append (list
'(top . 30);
'(left . 200) ;
'(width . 80) ;
'(height . 45) ;
'(foreground-color . "white") ;
'(background-color . "#333366") ;old lace or black
'(font . "fontset-tt14") ;
)
default-frame-alist))
(global-font-lock-mode t)
No comments:
Post a Comment