Emacs Config in OI
简介
在VSCode大行其道的今天,emacs
已经不再是OIer
的首选编辑器了,但是emacs
毕竟陪伴了我很久,让我无法放弃它,所以我决定把我的emacs
配置备份在此 :
功能一览
- 隐藏多余的控件
1 | (menu-bar-mode 0) |
- 解决编码问题
1 | (prefer-coding-system 'cp950) |
solarized light
主题设置背景透明
1 | (setq alpha-list '((85 55) (100 100))) |
d跳转窗口快捷键
1
2
3
4(global-set-key [M-left] 'windmove-left)
(global-set-key [M-right] 'windmove-right)
(global-set-key [M-up] 'windmove-up)
(global-set-key [M-down] 'windmove-down)鼠标滚轮放大缩小
1 | (global-set-key (kbd "<C-mouse-4>") 'text-scale-increase) |
- Post title:Emacs Config in OI
- Post author:Zheng Yu
- Create time:2019-06-15 15:55:13
- Post link:https://dataisland.org/2019/06/15/emacs-config/
- Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.