码迷,mamicode.com
首页 > 其他好文 > 详细

233

时间:2017-11-10 23:20:57      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:style   heat   format   normal   margin   for   extension   show   mpi   

 1 (set-background-color "gray20")
 2 
 3 (set-foreground-color "wheat")
 4 
 5 (setq default-tab-width 6)
 6 
 7 (show-paren-mode 1)
 8 
 9 (global-linum-mode t)
10 
11 (defun compile-file ()
12   (interactive)
13   (compile (format "g++ -o %s %s -g -Wall"  (file-name-sans-extension (buffer-name))(buffer-name))))
14 (global-set-key (kbd "<f9>") compile-file)
15 ;;;;;设置一键调试
16 (global-set-key (kbd "<f7>") gud-gdb)
17 (global-set-key (kbd "C-s") save-buffer)

 

 

(global-hl-line-mode t)
(ido-mode t)
(set-background-color "gray20")
(set-foreground-color "wheat")
(tool-bar-mode -1)
(scroll-bar-mode -1)
(menu-bar-mode -1)
(global-linum-mode t)

(set-background-color "gray20")

 

(set-foreground-color "wheat")

 

(setq default-tab-width 6)

 

(show-paren-mode 1)

 

(global-linum-mode t)

233

标签:style   heat   format   normal   margin   for   extension   show   mpi   

原文地址:http://www.cnblogs.com/Dragon-Light/p/7816520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!