emacs-rice/lisp/40-dap.el

9 lines
246 B
EmacsLisp
Raw Permalink Normal View History

2024-09-20 12:18:47 +03:00
;; Posframe is a pop-up tool that must be manually installed for dap-mode
2024-10-12 21:19:24 +03:00
(use-package posframe)
2024-09-20 12:18:47 +03:00
;; Use the Debug Adapter Protocol for running tests and debugging
(use-package dap-mode
:hook
(lsp-mode . dap-mode)
(lsp-mode . dap-ui-mode))