emacs的基本配置

 

emacs的基本配置

(set-background-color "darkslategray")

(set-foreground-color "wheat")

(global-set-key [f9] 'compile-file)

(global-set-key (kbd "C-a") 'mark-whole-buffer)

(global-set-key (kbd "C-z") 'undo)

(global-linum-mode t)

(setq kill-ring-max 200)

(setq default-tab-width 4)

(setq default-cursor-type 'bar)

(cua-mode t)

(show-paren-mode t)

(blink-cursor-mode -1)

感谢各位与信奥一本通的鼎力相助!

原文地址:https://www.cnblogs.com/SeanOcean/p/10975505.html