我感觉emacs的ui好复古好丑哇,不如neovim来的好看。你们都是用的什么主题或者插件呀。我用的doom-theme还是感觉不太好看
modus-operandi + doom-modeline
不用太多花裡胡俏的
3 个赞
你这个用的是doom-theme的哪一款主题呀
doom-nord-aurora
我用的 zeno
我用 color-theme-sanityinc-tomorrow 中的 sanityinc-tomorrow-day 和 sanityinc-tomorrow-bright,通过 auto-dark 让他跟随系统主题自动切换 dark/light, 不过我主要还是用 Dark。 至于 mode-line,直接用默认的,够用了,没觉得难看。 以下是个人的配置:
(use-package color-theme-sanityinc-tomorrow
:custom
(custom-safe-themes t)
(custom-enabled-themes '(sanityinc-tomorrow-day))
:hook (after-init . reapply-themes)
:config
(defun reapply-themes ()
"Forcibly load the themes listed in `custom-enabled-themes'."
(dolist (theme custom-enabled-themes)
(unless (custom-theme-p theme)
(load-theme theme)))
(custom-set-variables
`(custom-enabled-themes (quote ,custom-enabled-themes))))
(defun light ()
"Activate a light color theme."
(interactive)
(setq custom-enabled-themes '(sanityinc-tomorrow-day))
(reapply-themes))
(defun dark ()
"Activate a dark color theme."
(interactive)
(setq custom-enabled-themes '(sanityinc-tomorrow-bright))
(reapply-themes)))
(use-package auto-dark
:when (display-graphic-p)
:diminish
:custom
(auto-dark-dark-theme 'sanityinc-tomorrow-bright)
(auto-dark-light-theme 'sanityinc-tomorrow-day)
:hook (after-init . auto-dark-mode))
侧边栏是哪个插件呀
我这个是按自己需求扩展的dired。类似的包可以试试neotree
喔喔 感謝分享! 這個感覺挺好的!
我是写了个简单函数,从喜欢的主题里随机乱换,哈哈哈。
see: 在 Emacs 随机切换主题
个人比较喜欢这个timu-caribbean-theme
比较简单,对比度也比较高一点
用自带的modus-vivendi
将emacs的配色方案由用了接近10年的gruvbox-light-soft换到了随机切换的ef-themes。
哈哈哈,原来是你。
这篇文章我在 vxna 里看到,看完之后我就也写了一个随机乱选主题的方法,目前用着还不错。
doom-one + doom-modeline