modular test

This commit is contained in:
BearTaffy 2024-06-30 12:23:23 +03:00
parent ad08822b02
commit d5c5fc6587
20 changed files with 749 additions and 1431 deletions

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

@ -0,0 +1,7 @@
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)