Spacemacs 混合线号

Spacemacs hybrid line numbers

如何在 spacemacs 中为所有文件获取混合行号(相对行号,但当前行显示绝对行号而不是 0)?

我尝试在用户配置中设置相对行号,但这似乎不起作用,也不知道如何在相对模式下替换 0:

(global-linum-mode)
(setq-default dotspacemacs-line-numbers 'relative)

dotspacemacs-line-numbers 变量已经存在于您的 .spacemacs 函数中,在 dotspacemacs/init 函数中。如果不是这种情况,您可以在 SPC f e D.

的帮助下将 .spacemacs 更新为最后一个模板

将其值更改为 'relative,如:

;; If non nil line numbers are turned on in all `prog-mode' and `text-mode'
;; derivatives. If set to `relative', also turns on relative line numbers.
;; (default nil)
dotspacemacs-line-numbers 'relative

然后删除您在 dotspacemacs/user-config 中添加的两行。您只需要如上所述更改变量,它会为您应用更改:-)