瀏覽代碼

Add shortcut for capitalize word

undefined
Bingen Eguzkitza 3 年之前
父節點
當前提交
3d44b6115c
共有 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


Loading…
取消
儲存