Atom で全角スペースをハイライトする

ATOM 全角 スペース highlight - Qiita

ほぼこの記事と同様なのですが
全角スペースを可視化するプラグイン raccy/show-ideographic-space · GitHub
を入れて、CSSをカスタマイズすればこんな感じになります。

f:id:rochefort:20150517034906p:plain

css

atom-text-editor::shadow {
   .ideographic-space {
     .invisible-character {
       color: @background-color-error;
     }
   }
}

対象のclassを調べるのも、ほぼchromeのようで簡単です。
f:id:rochefort:20150517035212p:plain