33 lines
801 B
Lua
33 lines
801 B
Lua
-- Load prerequisites for plugins here
|
|
|
|
return {
|
|
{
|
|
"nvim-lua/plenary.nvim",
|
|
name = "plenary"
|
|
}
|
|
}
|
|
|
|
return {
|
|
{
|
|
"nvim-telescope/telescope.nvim",
|
|
tag = "0.1.6",
|
|
requires = {
|
|
{ "nvim-lua/plenary.nvim" } }
|
|
},
|
|
{ "romainl/vim-dichromatic", config = function() vim.cmd('colorscheme dichromatic') end },
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = function()
|
|
require("nvim-treesitter.install").update({ with_sync = true })()
|
|
end
|
|
},
|
|
"nvim-treesitter/playground",
|
|
"theprimeagen/harpoon",
|
|
"mbbill/undotree",
|
|
"tpope/vim-fugitive",
|
|
{ 'VonHeikemen/lsp-zero.nvim', branch = 'v4.x' },
|
|
{ 'neovim/nvim-lspconfig' },
|
|
{ 'hrsh7th/cmp-nvim-lsp' },
|
|
{ 'hrsh7th/nvim-cmp' },
|
|
}
|