浏览代码

Add shortcut for capitalize word

master
Bingen Eguzkitza 3 年前
父节点
当前提交
776ff658e8
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. +8
    -0
      lisp/init-local.el

+ 8
- 0
lisp/init-local.el 查看文件

@@ -1,8 +1,15 @@
;;; package --- local config
;;; Commentary:
;;; Code:

(global-set-key (kbd "S-s-<up>") 'windmove-up)
(global-set-key (kbd "S-s-<down>") 'windmove-down)
(global-set-key (kbd "S-s-<right>") 'windmove-right)
(global-set-key (kbd "S-s-<left>") 'windmove-left)


(global-set-key (kbd "M-C") 'capitalize-word)

;; linum-mode by default
(require 'linum)
(global-linum-mode 1)
@@ -12,4 +19,5 @@
(set-face-attribute 'default nil :height 100)

(provide 'init-local)
;;; init-local.el ends here


正在加载...
取消
保存