2010-07-15 60 views
9

嘿,我正在寻找一个更具视觉吸引力的emacs。有什么我可以做,使它看起来更美观或更新?视觉改进emacs

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

我的平台是Linux和Windows。我意识到emacs在社区中具有的“社交耻辱”,所以可能没有多少东西,但我想我会问。

我想我只是在寻找它在我目前的环境

+3

对于更多视觉吸引力Emacs,会使用vi。 – bta 2010-07-16 00:03:24

+8

@bta:对于更多可用的vi,请尝试emacs。 – 2010-07-16 00:17:47

+3

bta和保罗,我认为你们拼错“vim” – 2010-07-16 00:31:43

回答

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) 

而且,对于linky善良 -

Zenburn homepage; github;和color-theme

+1

+1:Zenburn是惊人的。 – sdolan 2010-07-15 23:41:25

+2

或者对于那些休闲的星期五...... Hello Kitty风格:http://www.wisdomandwonder.com/link/162/color-theme-pink-blissel – tovare 2010-07-16 00:35:38

+0

@tovare:我从来不知道emacs会如此蓬松.... – 2010-07-16 16:20:22