LazyVim.LazyVim/README.md
2023-01-07 12:12:08 +01:00

4.3 KiB

LazyVim

Neovim config for the lazy powered by 💤 lazy.nvim.

Can't decide between building a config from scratch or using one of the existing Neovim distros?

With LazyVim you don't have to. Configuring LazyVim is exactly the same as you would configure a config from scratch. You can easily add new plugins, change the config for existing ones or disable plugins.

image

🚀 Getting Started

You can find a starter template for LazyVim here

TLDR:

require("lazy").setup({
  spec = {
    -- import LazyVim plugins
    { "LazyVim/LazyVim", import = "lazyvim.plugins" },
    -- import/override with your plugins
    { import = "plugins" },
  },
  defaults = {
    lazy = true, -- every plugin is lazy-loaded by default
    version = "*", -- try installing the latest stable version for plugins that support semver
  },
})

Todo

  • documentation
  • treesitter auto-install seems broken. Switch to ensure_installed instead?
  • list all plugins in readme
  • test all-the-things

Plugins