diff options
author | Damjan 9000 <damjan.9000@gmail.com> | 2023-10-22 11:44:31 +0200 |
---|---|---|
committer | Damjan 9000 <damjan.9000@gmail.com> | 2023-11-03 21:01:49 +0100 |
commit | 5623cd033f823f06afa75739813066b13aa39598 (patch) | |
tree | 29b4096e5d60c9ef8bd23f8ef615427edf362a8c | |
parent | 29c77cd7e5e4f22b88c28e58208dbd348d75c6ad (diff) |
Added lua/lazy-bootstrap.lua
-rw-r--r-- | init.lua | 18 | ||||
-rw-r--r-- | lua/lazy-bootstrap.lua | 17 |
2 files changed, 20 insertions, 15 deletions
@@ -37,27 +37,15 @@ I hope you enjoy your Neovim journey, P.S. You can delete this when you're done too. It's your config now :) --]] + -- Set <space> as the leader key -- See `:help mapleader` -- NOTE: Must happen before plugins are required (otherwise wrong leader will be used) vim.g.mapleader = ' ' vim.g.maplocalleader = ' ' --- Install package 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) +-- Install lazy plugin manager +require('lazy-bootstrap') -- NOTE: Here is where you install your plugins. -- You can configure plugins using the `config` key. 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 |