9 lines
246 B
EmacsLisp
9 lines
246 B
EmacsLisp
;; Posframe is a pop-up tool that must be manually installed for dap-mode
|
|
(use-package posframe)
|
|
|
|
;; Use the Debug Adapter Protocol for running tests and debugging
|
|
(use-package dap-mode
|
|
:hook
|
|
(lsp-mode . dap-mode)
|
|
(lsp-mode . dap-ui-mode))
|