Browse Source

Add shortcut for capitalize word

master
Bingen Eguzkitza 3 years ago
parent
commit
776ff658e8
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      lisp/init-local.el

+ 8
- 0
lisp/init-local.el View File

;;; package --- local config
;;; Commentary:
;;; Code:

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



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

;; linum-mode by default ;; linum-mode by default
(require 'linum) (require 'linum)
(global-linum-mode 1) (global-linum-mode 1)
(set-face-attribute 'default nil :height 100) (set-face-attribute 'default nil :height 100)


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



Loading…
Cancel
Save