first bit of tinkering

This commit is contained in:
mallowpi 2024-05-15 15:55:19 -05:00
parent 5aeddfdd5d
commit b95e8c94f0
5 changed files with 158 additions and 122 deletions

8
lua/lazy-bootstrap.lua Normal file
View file

@ -0,0 +1,8 @@
-- [[ Install `lazy.nvim` plugin manager ]]
-- See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath }
end ---@diagnostic disable-next-line: undefined-field
vim.opt.rtp:prepend(lazypath)