M lisp/setup-dev.el => lisp/setup-dev.el +0 -8
@@ 22,14 22,6 @@
(setq-default indent-tabs-mode nil)
-(global-set-key (kbd "<f5>") (lambda ()
- (interactive)
- (setq-local compilation-read-command nil)
- (call-interactively 'compile)))
-
-(global-set-key (kbd "<f6>") #'shell)
-
-
;; setup GDB
(setq
;; use gdb-many-windows by default
M lisp/setup-keys.el => lisp/setup-keys.el +8 -0
@@ 79,5 79,13 @@
(add-hook 'python-mode-hook 'turn-on-evil-matchit-mode)))
+;;; Function keys
+(global-set-key (kbd "<f5>") (lambda ()
+ (interactive)
+ (setq-local compilation-read-command nil)
+ (call-interactively 'compile)))
+(global-set-key (kbd "<f6>") #'shell)
+
+
(provide 'setup-keys)
;;; setup-keys.el ends here