51 lines
1.4 KiB
Lua
51 lines
1.4 KiB
Lua
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
|
|
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
|
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.coding.yanky" },
|
|
{ import = "lazyvim.plugins.extras.coding.copilot" },
|
|
{ import = "lazyvim.plugins.extras.ui.mini-indentscope" },
|
|
{ import = "lazyvim.plugins.extras.dap.core" },
|
|
-- { import = "lazyvim.plugins.extras.ui.edgy" },
|
|
{ import = "lazyvim.plugins.extras.editor.aerial" },
|
|
{ import = "lazyvim.plugins.extras.editor.leap" },
|
|
{ import = "lazyvim.plugins.extras.test.core" },
|
|
{ import = "plugins" },
|
|
},
|
|
defaults = {
|
|
lazy = true,
|
|
version = false,
|
|
},
|
|
install = { colorscheme = { "tokyonight" } },
|
|
checker = { enabled = true },
|
|
performance = {
|
|
rtp = {
|
|
disabled_plugins = {
|
|
"gzip",
|
|
-- "matchit",
|
|
"matchparen",
|
|
"netrwPlugin",
|
|
"tarPlugin",
|
|
"tohtml",
|
|
"tutor",
|
|
"zipPlugin",
|
|
},
|
|
},
|
|
},
|
|
})
|