feat(debugging): add dap-mode with basic config for Go and Ruby

This commit is contained in:
2020-11-11 10:50:44 +00:00
parent 5c2229c807
commit 7917f6ac56
6 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
;;; siren-debug-map.el --- jimeh's Emacs Siren: debug-map setup.
;;; Commentary:
;; Setup of siren-debug-map which other debugging modules can add keybindings
;; to.
;;; Code:
(use-package siren-debug-map
:straight (:type built-in)
:no-require t
:bind
(:prefix-map siren-debug-map
:prefix "C-c -"))
(provide 'siren-debug-map)
;;; siren-debug-map.el ends here