emacs Mike Zamansky 09
系统 theme
m-x customize-theme
可以选择自带的主题,比如说 manoj-dark
, tango-dark
等等都不错。
也可以使用 m-x load-theme
来加载指定的主题。
如果需要每次都加载指定主题,需要修改 init.el
,增加:
(load-theme 'tango-dark t)
color-theme
这个是第三方主题,但是这个已经太旧了,推荐使用 color-theme-modern
,如果已经安装了这个旧的,那么需要卸载,卸载的方法是 m-x list-package
找到 color-theme
然后 d
标记删除,x
执行。
;;(use-package color-theme
;; :ensure t)
可以使用 color-theme-select
来选择需要加载的主题。
zenburn-theme
这个也是第三方主题
;; zenburn-theme: https://github.com/bbatsov/zenburn-emacs
(use-package zenburn-theme
:ensure t
:config (load-theme 'zenburn t))
暂时感觉,还是tango-dark
更加好看一点。
参考:
Using Emacs - 9 - Themes
https://cestlaz.github.io/posts/using-emacs-9-themes/
color-theme
https://github.com/emacsattic/color-theme
color-theme-modern
https://github.com/emacs-jp/replace-colorthemes#color-theme-modern--
zenburn-theme
https://github.com/bbatsov/zenburn-emacs
emacs常用命令:包安装、卸载
https://www.douban.com/note/515975650