Emacs personal configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

24 行
541B

  1. ;;; package --- local config
  2. ;;; Commentary:
  3. ;;; Code:
  4. (global-set-key (kbd "S-s-<up>") 'windmove-up)
  5. (global-set-key (kbd "S-s-<down>") 'windmove-down)
  6. (global-set-key (kbd "S-s-<right>") 'windmove-right)
  7. (global-set-key (kbd "S-s-<left>") 'windmove-left)
  8. (global-set-key (kbd "M-C") 'capitalize-word)
  9. ;; linum-mode by default
  10. (require 'linum)
  11. (global-linum-mode 1)
  12. ;; Set default font size
  13. ;; https://stackoverflow.com/a/296316/1937418
  14. (set-face-attribute 'default nil :height 100)
  15. (provide 'init-local)
  16. ;;; init-local.el ends here