work in progress, migrating to lazy

This commit is contained in:
2024-09-10 17:25:08 +02:00
parent 5d49261bf2
commit 51dfa68847
12 changed files with 79 additions and 53 deletions

32
lua/plugins/init.lua Normal file
View 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' },
}