Move keybindings to a different file

This commit is contained in:
2022-09-24 23:15:25 +02:00
parent 298a7165aa
commit 58c25ac89b
2 changed files with 11 additions and 6 deletions

9
+keybindings.el Normal file
View File

@@ -0,0 +1,9 @@
;;; +keybindings.el -*- lexical-binding: t; -*-
;; Custom keybindings
;;
;; Select target in Makefile compilation as default
(map! :leader :n "c c" #'makefile-executor-execute-project-target)
;; Keybindings for R markdown polymode
(map! :map poly-markdown+R-mode-map
:n "RET" #'polymode-eval-chunk
:desc "Evaluate code block")