mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 03:30: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
22 lines
563 B
Lua
22 lines
563 B
Lua
return {
|
|
"nvim-telescope/telescope.nvim",
|
|
branch = "0.1.x",
|
|
dependencies = {
|
|
"nvim-lua/popup.nvim",
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-telescope/telescope-dap.nvim",
|
|
"andrew-george/telescope-themes",
|
|
"nvim-telescope/telescope-media-files.nvim",
|
|
"nvim-telescope/telescope-file-browser.nvim",
|
|
{
|
|
"nvim-telescope/telescope-live-grep-args.nvim",
|
|
-- This will not install any breaking changes.
|
|
-- For major updates, this must be adjusted manually.
|
|
version = "^1.0.0",
|
|
},
|
|
},
|
|
config = function()
|
|
require("absolute.after.telescope")
|
|
end,
|
|
}
|