記事

Last Modified:

jaspaceから標準パッケージのwhitespaceに乗り換えた #Emacs

そもそもjaspaceの主目的である全角スペースはRictyフォントを使っているので要らなくなってた。 標準パッケージのwhitespaceは、タブはもちろん、行末のスペース、ファイル先頭・末尾の空行、長過ぎる行などにも色が付けられて便利。

設定

(use-package whitespace
  :config
  (setq whitespace-line-column 132
        whitespace-style '(face
                           trailing tabs lines space-before-tab indentation empty space-after-tab
                           tab-mark))
  (global-whitespace-mode 1))