linux - 视觉上改进 emacs

标签 linux windows emacs

大家好,我正在寻找更具视觉吸引力的 emacs。我可以做些什么来让它看起来更美观或更时尚吗?

我知道重要的不是它的外观,而是它的功能,但我想知道是否有人在美化 emacs 方面取得了成功。

我的平台是 Linux 和 Windows。我知道社区中“混淆”emacs 的社会污名化,所以可能不会有太多,但我想我还是要问。

我想我只是在寻找它以更好地“适应”我当前的环境

最佳答案

这些是我使用的影响我视觉外观的 .emacs 设置。

我使用了一个相当流行的颜色主题。它叫做 Zenburn,非常适合眼睛。还有很多其他的,但这是我使用的。

;;Syntax highlighting, can we say yes please?
(global-font-lock-mode t)

;Lets us see col # at the bottom. very handy.
(column-number-mode 1)

;buffer-name completion for C-x b; makes life much easier.
(iswitchb-mode 1)



;;;; Removes gui elements ;;;;
(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))  ; no gui scrollbare
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))      ; no toolbar!
(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))      ; no menubar



;;;; color theme...use zenburn ;;;;
(require 'color-theme)
(require 'zenburn)
(color-theme-initialize)
(zenburn)

而且,为了链接善良 -

曾本 homepage ; github ;和 color-theme .

关于linux - 视觉上改进 emacs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3260877/

相关文章:

linux - 邮件被发送到本地域而不是远程域

Emacs 使用存档。什么是最好的包裹?

sql - elisp 有原生的 sqlite 绑定(bind)吗?

c++ - 正确处理 Alt-Enter/Alt-Tab 全屏分辨率

linux - 为什么 Windows VM 会产生与 Linux 不同的浮点输出?

emacs - emacs elisp 中的简单 tcp 客户端示例?

linux - 使用 bash 脚本从文件中删除特定行

linux - Docker - 在多层应用程序中移动到新主机时需要传输哪些图像?

python - 循环可执行文件以从 Python 脚本获取结果

c# - TcpListener 不适用于 UWP 应用程序