mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
feat(plugins): add various new Lua plugins for Neovim configuration. feat(plugins): add venv-selector, vim-maximizer, and vim-tmux-navigator plugins to enhance functionality
15 lines
430 B
Lua
15 lines
430 B
Lua
return {
|
|
"linux-cultist/venv-selector.nvim",
|
|
lazy = false,
|
|
branch = "regexp", -- This is the regexp branch, use this for the new version
|
|
dependencies = {
|
|
"neovim/nvim-lspconfig",
|
|
"nvim-telescope/telescope.nvim",
|
|
"mfussenegger/nvim-dap-python",
|
|
},
|
|
config = function()
|
|
require("absolute.after.venv-selector")
|
|
end,
|
|
event = "VeryLazy", -- Optional: needed only if you want to type `:VenvSelect` without a keymapping
|
|
}
|