dotfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

lazy.lua (448B)


      1 local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
      2 if not 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",
      9         lazypath,
     10     })
     11 end
     12 vim.opt.rtp:prepend(lazypath)
     13 require("lazy").setup(
     14     {
     15         spec = { import = "linus.plugins" },
     16         change_detection = { enabled = false },
     17     }
     18 )