以下是问题的图片:
我使用以下方法更改了行号的背景颜色:
(set-face-attribute 'linum nil :background "gray20")
(setq linum-format "%3d ")
(顺便说一下,我必须使用gray20,#272822使一切变得绿色......)
注意行号如何触及文本。有办法阻止这个吗?
答案 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)