Reviewed-on: #1 Co-authored-by: Tomas Mirchev <contact@tomastm.com> Co-committed-by: Tomas Mirchev <contact@tomastm.com>
21 lines
589 B
Lua
21 lines
589 B
Lua
local M = {}
|
|
|
|
function M.get()
|
|
return {
|
|
{ 'savq/paq-nvim', opt = true },
|
|
{ 'https://github.com/mason-org/mason.nvim', opt = true },
|
|
|
|
{ 'https://github.com/triimd/invero.nvim' },
|
|
{ 'https://gitea.tomastm.com/tomas.mirchev/nvim-tree.lua', version = 'master' },
|
|
|
|
{ 'https://github.com/windwp/nvim-ts-autotag' },
|
|
{ 'https://github.com/windwp/nvim-autopairs' },
|
|
|
|
{ 'https://github.com/nvim-treesitter/nvim-treesitter', version = 'master' },
|
|
{ 'https://github.com/mfussenegger/nvim-lint' },
|
|
{ 'https://github.com/stevearc/conform.nvim' },
|
|
}
|
|
end
|
|
|
|
return M
|