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

emacs配置

作者:互联网

考场配置:

(tool-bar-mode 0)
(menu-bar-mode 0)
(global-linum-mode t)
(show-paren-mode t)
(ido-mode t)
(setq-default cursor-type 'bar)
(cua-mode t)
(global-auto-revert-mode t)
(setq-default scroll-step 1 scroll-margin 0 scroll-conservatively 10000)

(global-set-key [f9] 'compile-file)
(defun compile-file()
  (interactive)
  (compile (format "g++ -o %s %s -g -lm -Wall -std=c++98" (file-name-sans-extension (buffer-name)) (buffer-name)))
  )

(global-set-key (kbd "C-s") 'save-buffer)
(global-set-key (kbd "C-q") 'kill-buffer)
(global-set-key (kbd "C-x C-s") 'isearch-forward)
(global-set-key (kbd "C-e") 'shell)
(global-set-key (kbd "C-z") 'undo)
(global-set-key (kbd "C-x C-a") 'mark-whole-buffer)
(global-set-key (kbd "C-h") 'query-replace)

标签:set,配置,buffer,global,kbd,emacs,mode,key
来源: https://www.cnblogs.com/Quick-Kk/p/14620292.html