mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-12 15:20:50 -05:00
Addition config for dap-mode with python
This commit is contained in:
parent
639a82907b
commit
c8bf6db666
1 changed files with 9 additions and 1 deletions
|
@ -246,9 +246,17 @@
|
||||||
(lsp-ui-doc-show))
|
(lsp-ui-doc-show))
|
||||||
|
|
||||||
(use-package dap-mode
|
(use-package dap-mode
|
||||||
|
:after lsp-mode
|
||||||
|
:commands dap-debug
|
||||||
|
:hook ((python-mode . dap-ui-mode)
|
||||||
|
(python-mode . dap-mode))
|
||||||
:config
|
:config
|
||||||
(dap-ui-mode 1)
|
(dap-ui-mode 1)
|
||||||
(dap-tooltip-mode 1))
|
(dap-tooltip-mode 1)
|
||||||
|
(eval-when-compile
|
||||||
|
(require 'cl-lib))
|
||||||
|
(require 'dap-python)
|
||||||
|
(require 'dap-lldb))
|
||||||
|
|
||||||
(use-package company
|
(use-package company
|
||||||
:config
|
:config
|
||||||
|
|
Loading…
Reference in a new issue