Spacemacs自定义颜色

时间:2017-08-19 18:29:52

标签: emacs colors color-scheme spacemacs

我最近切换到Spacemacs,我正在尝试合并自己的自定义颜色主题。通常,我会这样做。

Sub CheckEnglishAndTypos()
    Do Until ActiveDocument.Bookmarks("\Sel").Range.End = ActiveDocument.Bookmarks("\EndOfDoc").Range.End
    'Loop the search till the end
        Selection.MoveDown Unit:=wdLine, Count:=1
        Selection.Paragraphs(1).Range.Select
        With Selection.Find
            .Text = "(<*>) \1"
            .Replacement.Text = ""
            .Forward = True
            .Wrap = wdFindStop
            .Format = True
            .MatchCase = False
            .MatchWholeWord = False
            .MatchWildcards = True
            .MatchSoundsLike = False
            .MatchAllWordForms = False
        End With
            Selection.Find.Execute Replace:=wdReplaceAll
        Loop
        ' Searching the remaning (till the end of document)
        Exit Sub
End Sub

Spacemacs有custom themes and colors的机制。但直接在我的自定义图层中调用时,这不起作用(请参阅herehere)。

1 个答案:

答案 0 :(得分:1)

好的,也解决了这个问题。我刚拿了firebelly repo,把它变成了一个spacemacs图层。为此,我所做的只是:

  1. 将repo作为子目录克隆到我的 .spacemacs.d / layers 目录。
  2. packages.el - &gt;制作了一个软链接firebelly-theme.el (A)。
  3. 在配置图层列表中添加了新的firebelly图层 dotspacemacs-configuration-layers(在 .spacemacs.d / init.el 中)(B)。
  4. A)

    firebelly/
    ├── firebelly-theme.el
    ├── packages.el -> firebelly-theme.el
    ├── readme.md
    └── screenshot.png
    

    B)

    dotspacemacs-configuration-layers
       '(
         ...
         firebelly)
    

    希望这有助于他人。