如何使行号不接触emacs中的文本文本

时间:2014-03-30 14:23:57

标签: emacs

以下是问题的图片:

enter image description here

我使用以下方法更改了行号的背景颜色:

(set-face-attribute 'linum nil :background "gray20")  
(setq linum-format "%3d ")

(顺便说一下,我必须使用gray20,#272822使一切变得绿色......)

注意行号如何触及文本。有办法阻止这个吗?

1 个答案:

答案 0 :(得分:2)

(global-linum-mode 1)
(setq-default left-fringe-width  30)
(setq-default right-fringe-width  0)
(set-face-attribute 'fringe nil :background "black")
(set-face-attribute 'default nil :background "black"
  :foreground "white" :font "Courier" :height 180)

Example