63 lines
1.8 KiB
Lua
63 lines
1.8 KiB
Lua
-- Bootstrap lazy.nvim
|
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
|
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
|
|
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
|
|
if vim.v.shell_error ~= 0 then
|
|
vim.api.nvim_echo({
|
|
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
|
|
{ out, "WarningMsg" },
|
|
{ "\nPress any key to exit..." },
|
|
}, true, {})
|
|
vim.fn.getchar()
|
|
os.exit(1)
|
|
end
|
|
end
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
return require('lazy').setup({
|
|
{
|
|
'nvim-telescope/telescope.nvim', tag = '0.1.8',
|
|
-- or , branch = '0.1.x',
|
|
dependencies = { {'nvim-lua/plenary.nvim'} }
|
|
},
|
|
"rebelot/kanagawa.nvim",
|
|
{
|
|
'nvim-treesitter/nvim-treesitter',
|
|
build = ':TSUpdate'
|
|
},
|
|
'nvim-treesitter/playground',
|
|
'theprimeagen/harpoon',
|
|
'mbbill/undotree',
|
|
'tpope/vim-fugitive',
|
|
--'github/copilot.vim',
|
|
--'vimwiki/vimwiki',
|
|
{
|
|
"supermaven-inc/supermaven-nvim",
|
|
config = function()
|
|
require("supermaven-nvim").setup({})
|
|
end,
|
|
},
|
|
{
|
|
'VonHeikemen/lsp-zero.nvim',
|
|
branch = 'v3.x',
|
|
dependencies = {
|
|
{'neovim/nvim-lspconfig'},
|
|
{'williamboman/mason.nvim'},
|
|
{'williamboman/mason-lspconfig.nvim'},
|
|
{'hrsh7th/nvim-cmp'},
|
|
{'hrsh7th/cmp-buffer'},
|
|
{'hrsh7th/cmp-path'},
|
|
{'saadparwaiz1/cmp_luasnip'},
|
|
{'hrsh7th/cmp-nvim-lsp'},
|
|
{'hrsh7th/cmp-nvim-lua'},
|
|
{'L3MON4D3/LuaSnip'},
|
|
}
|
|
},
|
|
{
|
|
'serenevoid/kiwi.nvim',
|
|
dependencies = { {'nvim-lua/plenary.nvim'} }
|
|
},
|
|
|
|
})
|