mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-07-02 18:59:26 +00:00
[neovim] Add python goodies
This commit is contained in:
@ -226,9 +226,20 @@ require("lazy").setup({
|
||||
-- DAP
|
||||
{ "mfussenegger/nvim-dap", event = "VeryLazy", version = "0.*" },
|
||||
{ "rcarriga/nvim-dap-ui", event = "VeryLazy", version = "v3.*" },
|
||||
{ "ravenxrz/DAPInstall.nvim", event = "VeryLazy" },
|
||||
{ "theHamsta/nvim-dap-virtual-text", event = "VeryLazy" },
|
||||
|
||||
-- Python
|
||||
{
|
||||
"linux-cultist/venv-selector.nvim",
|
||||
dependencies = {
|
||||
"mfussenegger/nvim-dap-python",
|
||||
},
|
||||
opts = {
|
||||
dap_enabled = true,
|
||||
},
|
||||
event = "VeryLazy",
|
||||
},
|
||||
|
||||
-- Go
|
||||
{
|
||||
"ray-x/go.nvim",
|
||||
@ -239,6 +250,8 @@ require("lazy").setup({
|
||||
event = { "CmdlineEnter" },
|
||||
ft = { "go", "gomod" },
|
||||
},
|
||||
|
||||
-- Testing
|
||||
{
|
||||
"nvim-neotest/neotest",
|
||||
dependencies = {
|
||||
|
Reference in New Issue
Block a user