|
|
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
|
|
-- bootstrap lazy.nvim
|
|
|
|
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 plugins
|
|
|
|
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
|
|
|
-- My Plugins
|
|
|
|
{ import = "plugins" },
|
|
|
|
-- LazyVim Extras
|
|
|
|
{ import = "lazyvim.plugins.extras.lang.json" },
|
|
|
|
{ import = "lazyvim.plugins.extras.lang.yaml" },
|
|
|
|
{ import = "lazyvim.plugins.extras.lang.rust" },
|
|
|
|
{ import = "lazyvim.plugins.extras.lang.go" },
|
|
|
|
{ import = "lazyvim.plugins.extras.lang.typescript" },
|
|
|
|
{ import = "lazyvim.plugins.extras.lang.python" },
|
|
|
|
{ import = "lazyvim.plugins.extras.lang.markdown" },
|
|
|
|
{ import = "lazyvim.plugins.extras.dap.core" },
|
|
|
|
-- Can't figure out how to force reordering of the completions so just gonna disable it for now
|
|
|
|
-- { import = "lazyvim.plugins.extras.coding.copilot" },
|
|
|
|
},
|
|
|
|
defaults = {
|
|
|
|
lazy = false,
|
|
|
|
version = false, -- always use the latest git commit
|
|
|
|
},
|
|
|
|
install = { colorscheme = { "catppuccin" } },
|
|
|
|
change_detection = { notify = false },
|
|
|
|
checker = { enabled = false },
|
|
|
|
performance = {
|
|
|
|
rtp = {
|
|
|
|
disabled_plugins = {
|
|
|
|
"gzip",
|
|
|
|
"tarPlugin",
|
|
|
|
"tohtml",
|
|
|
|
"tutor",
|
|
|
|
"zipPlugin",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
vim.cmd.colorscheme("catppuccin")
|