在.emacs中加入
;;; Always do syntax highlighting
(global-font-lock-mode 1)
;;; Also highlight parens
(setq show-paren-delay 0
show-paren-style 'parenthesis)
(show-paren-mode 1)
;;; This is the binary name of my scheme implementation
(setq scheme-program-name "mit-scheme")
C-x 2 ;;新打开一个水平分割的窗口。
C-x o ;;跳转到这个新打开的窗口。 M-x run-scheme ;;在新打开的窗口里面运行scheme解释器。 C-x C-e ;;将光标之前的最后一个语句交给scheme解释并执行。