すべてのファイルのspacemacsでハイブリッド行番号(相対行番号ですが、現在の行には0ではなく絶対行番号が表示されます)を取得するにはどうすればよいですか?
User-configで相対行番号を設定しようとしましたが、それが機能していないようで、相対モードで0を置き換える方法もわかりません。
(global-linum-mode)
(setq-default dotspacemacs-line-numbers 'relative)
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
に追加した2行を削除します。上で説明したように変数を変更するだけで、変更の適用が自動的に行われます:-)