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

29 lines
515 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" },
{
"nvim-tree/nvim-web-devicons",
opts = {}
},
{
"windwp/nvim-autopairs",
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",
dependencies = { "nvim-lua/plenary.nvim" },
}
2023-03-18 22:47:34 -06:00
}