Add setup-general + map some kbd-macro commands

This commit is contained in:
laurensmiers 2017-08-22 10:08:52 +02:00
parent bf119f6e24
commit bd03b6ef5c
2 changed files with 8 additions and 0 deletions

5
custom/setup-general.el Normal file
View file

@ -0,0 +1,5 @@
(global-set-key [f9] 'start-kbd-macro)
(global-set-key [f10] 'end-kbd-macro)
(global-set-key [f11] 'call-last-kbd-macro)
(provide 'setup-general)

View file

@ -71,6 +71,9 @@
;; install packages if not yet installed ;; install packages if not yet installed
(install-packages) (install-packages)
;; setup general
(require 'setup-general)
;; setup coding ;; setup coding
(require 'setup-coding) (require 'setup-coding)