我的emacs 配置
其实和很多人的emacs配置文件一样,我的配置文件也是在网上来回copy过来的,不过大家都是在copy来copy去的,所以我就不在写参考自哪里了:) 我的emacs版本: [laolang@laolang ~]$ pacman -Q emacs emacs 24.5-2 [laolang@laolang ~]$ 基本配置: ;;;;;;;;;;;;;;;基本配置;;;;;;;;;;;;;;;;;;; ;;--------- 显示设置-------------- ;; ---color -theme ;(add-to-list 'load-path "~/.emacs.d/base/color-theme") (add-to-list 'load-path "~/.emacs.d/plugin/color-theme") (require 'color-theme) (color-theme-initialize) ;(color-theme-lawrence) (color-theme-euphoria) ;;;--- 显示行号 (require 'linum) (setq linum-format "%3d ") ;;;---对所有文件生效 (add-hook 'find-file-hooks (lambda () (linum-mode 1))) ;;;--- 显示列号