add oil. try to get python debugger working

This commit is contained in:
Stephen Leece 2024-03-30 11:53:27 -07:00
parent 4e1dea8c2b
commit 30101a9027
4 changed files with 25 additions and 3 deletions

View file

@ -22,7 +22,7 @@ return {
'leoluz/nvim-dap-go',
'suketa/nvim-dap-ruby',
'mfussenegger/nvim-dap-python',
},
config = function()
local dap = require 'dap'
@ -86,8 +86,11 @@ return {
-- Install golang specific config
require('dap-go').setup()
require('dap-ruby').setup()
require('dap-ruby').setup()
require('dap-python').setup('/Users/stephenleece/.asdf/shims/python')
require('dap-python').setup('/Users/stephenleece/src/flask_stephenleece_app/venv/bin/python')
end,
}