.config/nvim/lua/lazy-bootstrap.lua

changeset 1064
fcfa295076a8
parent 1049
3f01468ffc32
child 1073
911aa9d81e71
--- a/.config/nvim/lua/lazy-bootstrap.lua
+++ b/.config/nvim/lua/lazy-bootstrap.lua
@@ -1,6 +1,13 @@
 local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
 if not vim.loop.fs_stat(lazypath) then
-  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
+  vim.fn.system({
+    "git",
+    "clone",
+    "--filter=blob:none",
+    "https://github.com/folke/lazy.nvim.git",
+    "--branch=stable",
+    lazypath,
+  })
 end
 vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
 
@@ -13,7 +20,7 @@ require("lazy").setup({
         colorscheme = "jellybeans",
       },
     },
-    { import = "plugins" }
+    { import = "plugins" },
   },
   change_detection = { enabled = false },
   performance = {

mercurial