Ver código fonte

Add shortcut for capitalize word

undefined
Bingen Eguzkitza 3 anos atrás
pai
commit
3d44b6115c
1 arquivos alterados com 8 adições e 0 exclusões
  1. +8
    -0
      lisp/init-local.el

+ 8
- 0
lisp/init-local.el Ver arquivo

@@ -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


Carregando…
Cancelar
Salvar