如何在所有文件的spacemacs中获得混合行编号(相对行号,但当前行显示绝对行号而不是0)?
我尝试在user-config中设置相对行号,但这似乎不起作用,并且无法弄清楚如何在相对模式下替换0:
ORA-01461: can bind a LONG value only for insert into a LONG column`
答案 0 :(得分:17)
dotspacemacs-line-numbers
功能中.spacemacs
已存在dotspacemacs/init
变量。如果不是这种情况,您可以在.spacemacs
的帮助下将SPC f e D
更新为最后一个模板。
将其值更改为'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
中添加的两行。您所需要的只是如上所述更改变量,它将负责为您应用更改: - )