0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Windows10上のSpacemacsでデフォルトエンコードをUTF8にする

Posted at

概要

Windows10でSpacemacsを使っていると、新規作成したファイルのエンコードが dosになる。

僕はMacでは utf-8-unixを使っているので、Windowsでもデフォルトはそっちにしたい。毎回 set-buffer-file-coding-system ( Ctrl + x Return f)で変えるのはしんどい。

デフォルトのエンコードを変える

変える。 .spacemacs ( Space f e d)に、以下のような設定を加える。

今回は utf-8-unixで。

.spacemacs(抜粋)
(defun dotspacemacs/user-config ()

  ;; デフォルトのエンコードをUTF8にする
  (set-default-coding-systems 'utf-8-unix)

)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?