neovim

mrgrouse's beloved, handmade neovim configuration
Log | Files | Refs | README

lazy-nvim.lua (380B)


      1 local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
      2 --if not (vim.uv or vim.loop).fs_stat(lazypath) then
      3 --  vim.fn.system({
      4 --    "git",
      5 --    "clone",
      6 --    "--filter=blob:none",
      7 --    "https://github.com/folke/lazy.nvim.git",
      8 --    "--branch=stable", -- latest stable release
      9 --    lazypath,
     10 --  })
     11 --end
     12 vim.opt.rtp:prepend(lazypath)
     13 require("lazy").setup("plugins")