MIT/GNU-Scheme 의 에디터인 edwin (Scheme으로 구현된 Emacs 클론)의 설정 파일 edwin.ini 설정
((ref-command set-default-font) "Bitstream Vera Sans Mono")
((ref-command set-font) "Bitstream Vera Sans Mono 10")
((ref-command set-frame-size) 80 35)
((ref-command set-frame-position) 472 0)
((ref-command set-foreground-color) "black")
((ref-command set-background-color) #(245 245 220))
(if (file-exists? "~/edwin-abbrevs.txt")
(quietly-read-abbrev-file "~/edwin-abbrevs.txt"))
(set-variable! save-abbrevs #t)
(if (file-exists? "~/edwin-macros.txt")
(quietly-read-abbrev-file "~/edwin-macros.txt"))
(add-event-receiver! (ref-variable text-mode-hook)
(lambda (buffer)
(turn-on-auto-fill buffer)
(enable-buffer-minor-mode! buffer (ref-mode-object abbrev))))

덧글