Emacs personal configuration
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- ;;; 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)
-
- ;; Set default font size
- ;; https://stackoverflow.com/a/296316/1937418
- (set-face-attribute 'default nil :height 100)
-
- (provide 'init-local)
- ;;; init-local.el ends here
|