2010-07-15 63 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