|
|
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
|
|
-- bootstrap lazy.nvim
|
|
|
|
-- stylua: ignore
|
|
|
|
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
|
|
|
|
end
|
|
|
|
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
|
|
|
|
|
|
|
|
require("lazy").setup({
|
|
|
|
spec = {
|
|
|
|
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
|
|
|
{ import = "lazyvim.plugins.extras.lang.rust" },
|
|
|
|
{ import = "lazyvim.plugins.extras.lang.go" },
|
|
|
|
{ import = "lazyvim.plugins.extras.util.project" },
|
|
|
|
{ import = "lazyvim.plugins.extras.dap.core" },
|
|
|
|
{ import = "lazyvim.plugins.extras.lang.typescript" },
|
|
|
|
{ import = "lazyvim.plugins.extras.lang.json" },
|
|
|
|
{ import = "plugins" },
|
|
|
|
},
|
|
|
|
defaults = {
|
|
|
|
lazy = false,
|
|
|
|
-- It's recommended to leave version=false for now, since a lot the plugin that support versioning,
|
|
|
|
-- have outdated releases, which may break your Neovim install.
|
|
|
|
version = false, -- always use the latest git commit
|
|
|
|
},
|
|
|
|
install = { colorscheme = { "catppuccin" } },
|
|
|
|
checker = { enabled = true }, -- automatically check for plugin updates
|
|
|
|
performance = {
|
|
|
|
rtp = {
|
|
|
|
disabled_plugins = {
|
|
|
|
"gzip",
|
|
|
|
"tarPlugin",
|
|
|
|
"tohtml",
|
|
|
|
"tutor",
|
|
|
|
"zipPlugin",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|