1 local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
2 if not vim.loop.fs_stat(lazypath) then
4 vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
6 vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
8 require("lazy").setup({
10 { import = "plugins" },
11 { import = "plugins.lang" },
15 version = false, -- always use the latest git commit
17 install = { colorscheme = { "onenord", "habamax" } },
24 -- HACK: do not reset rtp to allow interop with vim-plug
26 -- disable some rtp plugins