All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
2 if not (vim.uv or vim.loop).fs_stat(lazypath) then
3 local lazyrepo = "https://github.com/folke/lazy.nvim.git"
4 local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
5 if vim.v.shell_error ~= 0 then
7 { "Failed to clone lazy.nvim:\n", "ErrorMsg" },
9 { "\nPress any key to exit..." },
15 vim.opt.rtp:prepend(lazypath)
17 require("lazy").setup({
19 -- add LazyVim and import its plugins
20 { "LazyVim/LazyVim", import = "lazyvim.plugins" },
21 -- import/override with your plugins
22 { import = "plugins" },
25 -- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
26 -- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default.
28 -- It's recommended to leave version=false for now, since a lot the plugin that support versioning,
29 -- have outdated releases, which may break your Neovim install.
30 version = false, -- always use the latest git commit
31 -- version = "*", -- try installing the latest stable version for plugins that support semver
33 install = { colorscheme = { "tokyonight", "habamax" } },
35 enabled = false, -- check for plugin updates periodically
36 notify = false, -- notify on update
37 }, -- automatically check for plugin updates
40 -- disable some rtp plugins