今天重新系统,不小心把emacs配置文件弄丢了,只得重新来过
1. 首先中文输入使用 ibus.el
- 安装python-xlib
- sudo apt-get install python-xlib
- 配置文件
- (add-to-list 'load-path "~/.emacs.d/site-lisp/ibus-el-0.2.1")
-
(require 'ibus)
-
;; Turn on ibus-mode automatically after loading .emacs
-
(add-hook 'after-init-hook 'ibus-mode-on)
-
;; Use C-SPC for Set Mark command
-
(ibus-define-common-key ?\C-\s nil)
-
;; Use C-/ for Undo command
-
(ibus-define-common-key ?\C-/ nil)
-
;; Change cursor color depending on IBus status
-
(setq ibus-cursor-color '("red" "blue" "limegreen"))
-
;; Use s-SPC to toggle input status
-
(global-set-key (kbd "s-SPC") 'ibus-toggle)
现在,按 super+space 可以输入中文了
2. 保存桌面环境使用 desktop.el ,这个emacs23自带
3. buffer管理使用 ibuffer.el ,这个也是emacs23自带
- (global-set-key (kbd "C-x C-b") 'ibuffer)
-
(autoload 'ibuffer "ibuffer" "List buffers." t)
ibuffer.el介绍:
4. tab设置
先设置tab长度为4:
- (setq default-tab-width 4)
使用 smart-tab.el ,参考:
================================================
因有工作任务,用到哪里配置哪里吧,持续更新中~~
不做解释,先贴出来
阅读(1483) | 评论(0) | 转发(0) |