work in progress, migrating to lazy
This commit is contained in:
32
lua/plugins/init.lua
Normal file
32
lua/plugins/init.lua
Normal file
@@ -0,0 +1,32 @@
|
||||
-- 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' },
|
||||
}
|
||||
Reference in New Issue
Block a user