Provision Emacs development tools

This commit is contained in:
Fabio Scotto di Santolo
2026-06-21 18:41:48 +02:00
parent ae8a6161cd
commit 2fdda39395
5 changed files with 54 additions and 38 deletions

View File

@@ -21,4 +21,11 @@
;; Loading DAP adapters
;; For Python
(require 'dap-python)
(setq dap-python-debugger 'debugpy))
(setq dap-python-debugger 'debugpy
dap-python-executable
(let ((uv-debugpy-python
(expand-file-name
"~/.local/share/uv/tools/debugpy/bin/python")))
(if (file-executable-p uv-debugpy-python)
uv-debugpy-python
"python3"))))