dotfiles/symlinks/config/nvim/lua/plugin/dap.lua

15 lines
414 B
Lua
Raw Normal View History

2021-02-25 16:06:52 +00:00
-------------------------------------------------------------------------------
-- - NeoVim DAP (Debug Adapter Protocol) config -
-------------------------------------------------------------------------------
local dap = require('dap')
dap.adapters.python = {
type = 'executable';
command = 'python';
args = { '-m', 'debugpy.adapter' };
}
-- Nvim DAP Treesitter integration
vim.g.dap_virtual_text = true