2016-04-11 76 views

回答

1

如果有幫助,您還可以配置emacs文件中的顏色。

使用功能custom-set-faces

;; changing colors 
(custom-set-faces 
    '(minimap-active-region-background 
    ((((background dark)) (:background "#2A2A2A222222")) 
     (t (:background "#D3D3D3222222"))) 
    "Face for the active region in the minimap. 
By default, this is only a different background color." 
    :group 'minimap)) 

更多:https://www.gnu.org/software/emacs/manual/html_node/elisp/Defining-Faces.html