Emacs需要第三方插件显示行号
1 下载 linum.el
2 复制 linum.el 到“/usr/share/emacs/site-lisp/”或者其他 load-path路径下
3 配置 linum.el 到 ~/.emacs
- ;********************************************************
- ; *
- ; * Author : sunboy_2050
- ; * Date : 2012-07-31
- ; * File : ~/.emacs
- ; *
- ; *
- ; ********************************************************/
- (require ‘linum)
-
- ;;; show line numbers in buffer
- ;;; run M-x linum-mode
-
- ;;; show line numbers in all buffers
- ;;; run M-x global-linum-mode
-
- (global-linum-mode t)
M-x : Alt + x
输入: linum-mode
5 配置效果如下: