diff --git a/after/plugin/dap/dap-python.lua b/after/plugin/dap/dap-python.lua new file mode 100644 index 0000000..9d92a62 --- /dev/null +++ b/after/plugin/dap/dap-python.lua @@ -0,0 +1 @@ +require('dap-python').setup() diff --git a/after/plugin/lsp/lsp-python.lua b/after/plugin/lsp/lsp-python.lua new file mode 100644 index 0000000..d18564a --- /dev/null +++ b/after/plugin/lsp/lsp-python.lua @@ -0,0 +1 @@ +require'lspconfig'.pylsp.setup{} diff --git a/lua/myworkflow/packer.lua b/lua/myworkflow/packer.lua index f1087c3..81f40be 100644 --- a/lua/myworkflow/packer.lua +++ b/lua/myworkflow/packer.lua @@ -37,6 +37,7 @@ return require('packer').startup(function(use) use 'leoluz/nvim-dap-go' use 'rcarriga/nvim-dap-ui' use 'jbyuki/one-small-step-for-vimkind' + use 'mfussenegger/nvim-dap-python' -- Autocompletion use 'hrsh7th/cmp-nvim-lsp'