家人们你们的ui主题啥的是怎么配置的呀

我感觉emacs的ui好复古好丑哇,不如neovim来的好看。你们都是用的什么主题或者插件呀。我用的doom-theme还是感觉不太好看

modus-operandi + doom-modeline

不用太多花裡胡俏的

3 个赞

主题基本上用的doom-themes,各种布局(modeline, 侧边栏,tab-line, tab-bar)基本都是自己慢慢手敲积累的。

8 个赞

你这个用的是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))

效果见此帖: 有没有介于浅色和深色之间的主题呢 - #15,来自 aqua0210

侧边栏是哪个插件呀

我这个是按自己需求扩展的dired。类似的包可以试试neotree

这还有个轻量版的基于 dired的边栏, 可以用 nerd-icon显示图标:

2 个赞

喔喔 感謝分享! 這個感覺挺好的! :face_savoring_food:

用了一些现代的一段时间,又会喜欢上内置的复古的,我目前用自带的tsdh-dark, 但把mode-line的红线框给换成了灰的,因为我闪光眼镜没有满配,细红线会重影 :grinning_face:

我是写了个简单函数,从喜欢的主题里随机乱换,哈哈哈。

see: 在 Emacs 随机切换主题

个人比较喜欢这个timu-caribbean-theme

比较简单,对比度也比较高一点

用自带的modus-vivendi

emacs-更改配色方案

将emacs的配色方案由用了接近10年的gruvbox-light-soft换到了随机切换的ef-themes

哈哈哈,原来是你。

这篇文章我在 vxna 里看到,看完之后我就也写了一个随机乱选主题的方法,目前用着还不错。

ef-summer 这个主题用好久了。现在反而不喜欢太复杂的配置,感觉这种纯文本的风格看久了也不错 :face_savoring_food:

doom-one + doom-modeline