(require 'autoinsert)
(setq auto-insert-directory "~/.codeTemplate/")
(setq auto-insert-alist
(nconc '( ("\\.tex$" . "template.tex")
("\\.c$" . "template.c")
("\\.cpp$" . "template.cpp")
("\\.js$" . "template.js")
("\\.html$" . "template.html")
("\\.css$" . "template.css")
("\\.rb$" . "template.rb")
) auto-insert-alist))
(add-hook 'find-file-not-found-hooks 'auto-insert)
Showing posts with label Emacs. Show all posts
Showing posts with label Emacs. Show all posts
Friday, November 16, 2007
Emacs でテンプレートを自動挿入設定
Saturday, December 23, 2006
Emacs 設定編
Emacsで日本語を使用する:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Set Japanese Environment ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(set-language-environment "Japanese")
Emacs起動位置、サイズ、文字の色や背景
キーワードを色で強調表示させる。ON(t)/OFF(f)
(global-font-lock-mode t)
現在の設定:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 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)
Subscribe to:
Posts (Atom)