视觉上改进emacs

ete*_*nal 9 linux windows emacs

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

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

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

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

Pau*_*han 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)
Run Code Online (Sandbox Code Playgroud)

而且,对于连环的善良 -

Zenburn 主页 ; github ; 和颜色主题.

  • 或者对于那些休闲的星期五...... Hello Kitty风格:http://www.wisdomandwonder.com/link/162/color-theme-pink-blissel (2认同)