nix-conf/home/config/nvim/lua/plugins/venv-selector.lua
2025-01-03 01:43:27 +08:00

23 lines
610 B
Lua

return {
{
"mfussenegger/nvim-dap",
config = function() end,
},
{
"linux-cultist/venv-selector.nvim",
dependencies = {
"neovim/nvim-lspconfig",
"mfussenegger/nvim-dap",
"mfussenegger/nvim-dap-python", --optional
{ "nvim-telescope/telescope.nvim", branch = "0.1.x", dependencies = { "nvim-lua/plenary.nvim" } },
},
lazy = false,
branch = "regexp", -- This is the regexp branch, use this for the new version
config = function()
require("venv-selector").setup()
end,
keys = {
{ "<leader>cv", "<cmd>VenvSelect<cr>" },
},
},
}