Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1308910
  • 博文数量: 268
  • 博客积分: 10698
  • 博客等级: 上将
  • 技术积分: 2867
  • 用 户 组: 普通用户
  • 注册时间: 2007-07-14 22:21
文章分类

全部博文(268)

文章存档

2012年(19)

2011年(13)

2010年(29)

2009年(26)

2008年(99)

2007年(82)

我的朋友

分类: LINUX

2007-11-26 04:26:22

~/.Xresources

emacs*Background: DarkSlateGray
emacs*Foreground: Wheat
#emacs*Background: DarkSlateGray
#emacs*Foreground: Wheat
#emacs*Background: DeepSkyBlue4
#emacs*Foreground: Azure3
#emacs*Background: DarkOrange4
#emacs*Foreground: Ivory3
emacs*pointerColor: Orchid
emacs*cursorColor: Orchid
emacs*bitmapIcon: off
emacs*font: -sony-fixed-medium-r-normal--16-150-75-75-c-80-iso8859-1
emacs.geometry: 96x34
xterm*metaSendsEscape: true

----------------------------------------------------------------------

字体及效果图:
-sony-fixed-medium-r-normal--16-150-75-75-c-80-iso8859-1



-dec-terminal-medium-r-normal--14-140-75-75-c-80-iso8859-1


-------------------------------------------------------------------------------

~/.emacs

;; no toolbar
(tool-bar-mode -1)
;; no scrollbar
(scroll-bar-mode -1)

;; use f5 to delete other windows, simpler than C-x 1
(global-set-key [f5] 'delete-other-windows)
;; use f11 to fullscreen
(defun fullscreen ()
  (interactive)
  (set-frame-parameter nil 'fullscreen
               (if (frame-parameter nil 'fullscreen) nil 'fullboth)))
(global-set-key [f11] 'fullscreen)
;; do not create backup files
(setq make-backup-files nil)
阅读(1467) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~