其他分享
首页 > 其他分享> > emacs 考场配置

emacs 考场配置

作者:互联网

先存在这里,免得等回来乱搞的时候把自己的配置搞丢了qwq

(custom-set-variables
 '(custom-enabled-themes (quote (tango-dark))))
(custom-set-faces)

(set-background-color "gray15")
(set-foreground-color "gray")

(global-set-key [f9] 'compile)
(global-set-key [f10] 'gud-gdb)
(global-set-key (kbd "C-s") 'save-buffer)
(global-set-key (kbd "C-a") 'mark-whole-buffer)
(global-set-key (kbd "RET") 'newline-and-indent)

(setq default-cursor-type 'bar)
(setq default-tab-width 4)
(setq c-default-style "awk")
(tool-bar-mode -1)
(global-linum-mode t)
(show-paren-mode t)
(setq-default inhibit-startup-message t)

(set-frame-parameter (selected-frame) 'alpha (list 85 50))

标签:set,配置,default,global,kbd,考场,emacs,setq,key
来源: https://www.cnblogs.com/fengxunling/p/10381585.html