kickstart.nvim/lua/custom/plugins/init.lua

45 lines
800 B
Lua
Raw Normal View History

2023-03-18 22:47:34 -06:00
return {
{ "github/copilot.vim", },
{ "myusuf3/numbers.vim", },
{ "tpope/vim-eunuch", },
{ "tpope/vim-repeat", },
{ "tpope/vim-surround" },
2023-04-05 20:50:46 -06:00
{ "tribela/vim-transparent" },
2023-03-18 22:47:34 -06:00
{
"nvim-tree/nvim-web-devicons",
opts = {}
},
2023-04-05 20:50:46 -06:00
{
"danymat/neogen",
dependencies = "nvim-treesitter/nvim-treesitter",
config = true,
},
{
'phaazon/hop.nvim',
branch = 'v2',
config = function()
require 'hop'.setup {}
end
},
2023-03-18 22:47:34 -06:00
{
"windwp/nvim-autopairs",
2023-04-05 20:50:46 -06:00
lazy = true,
2023-03-18 22:47:34 -06:00
config = function()
require("nvim-autopairs").setup {}
end,
},
{
"kristijanhusak/vim-dirvish-git",
2023-03-20 13:15:46 -04:00
dependencies = { "justinmk/vim-dirvish", },
2023-03-18 22:47:34 -06:00
},
2023-03-20 13:15:46 -04:00
{
"jose-elias-alvarez/null-ls.nvim",
2023-04-05 20:50:46 -06:00
lazy = true,
2023-03-20 13:15:46 -04:00
dependencies = { "nvim-lua/plenary.nvim" },
}
2023-03-18 22:47:34 -06:00
}