视觉上改进emacs

时间:2010-07-15 23:30:51

标签: linux windows emacs

嘿所有,我正在寻找更具视觉吸引力的emacs。我有什么办法可以让它看起来更具美感或更新吗?

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

我的平台是Linux和Windows。我知道emacs在社区中有“丑闻化”的​​社会耻辱感,所以可能没有那么多,但我想我还是会问。

我想我只是想在当前环境中“适应”更好“

3 个答案:

答案 0 :(得分:12)

这些是我使用的影响我视觉外观的.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)

而且,对于连环善良 -

Zenburn homepage; github;和color-theme

答案 1 :(得分:0)

Emacs Wiki上可能感兴趣的几页:

答案 2 :(得分:0)