From 5623cd033f823f06afa75739813066b13aa39598 Mon Sep 17 00:00:00 2001 From: Damjan 9000 Date: Sun, 22 Oct 2023 11:44:31 +0200 Subject: Added lua/lazy-bootstrap.lua --- lua/lazy-bootstrap.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lua/lazy-bootstrap.lua (limited to 'lua/lazy-bootstrap.lua') diff --git a/lua/lazy-bootstrap.lua b/lua/lazy-bootstrap.lua new file mode 100644 index 0000000..70aebf5 --- /dev/null +++ b/lua/lazy-bootstrap.lua @@ -0,0 +1,17 @@ +-- [[ Bootstrap lazy plugin manager ]] +-- https://github.com/folke/lazy.nvim +-- `:help lazy.nvim.txt` for more info +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', -- latest stable release + lazypath, + } +end +vim.opt.rtp:prepend(lazypath) + +-- vim: ts=2 sts=2 sw=2 et -- cgit v1.2.3-70-g09d2