LoginSignup
0
0

More than 3 years have passed since last update.

spacemacsのThemeを変更する

Posted at

環境

macOS
spacemacs

参照

SpacemacsのTheme一覧: Spacemacs Themes
twilight-bright-themeのGitHubリポジトリ: jimeh/twilight-bright-theme.el

Step1. 既存のThemeを変更してみる

M-x load-theme

変更したいThemeを選びます。

Step2. 外部のThemeをインストールして適用してみる

  1. Spacemacs Themes (SpacemacsのTheme一覧) から、使用したいThemeを選びます。
  2. twilight-bright を使いたいため、twilight-bright-themeのGitHubリポジトリを見つけます。

  3. .spacemacs.d以下のinit.elを開きます。

  4. dotspacemacs-additional-packagestwilight-bright-themeを追記して
    dotspacemacs-themestwilight-brightを追記します。

dotspacemacs-themesは上から順に読み込まれるため、先頭に記述してください。

init.el
dotspacemacs-additional-packages '(twilight-bright-theme
                                      )
dotspacemacs-themes '(twilight-bright
                         spacemacs-light
                         spacemacs-dark
                         )

emacsを再起動すると読み込まれます。

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