modular test
This commit is contained in:
parent
ad08822b02
commit
d5c5fc6587
20 changed files with 749 additions and 1431 deletions
10
lua/beartaffy/lazy_init.lua
Normal file
10
lua/beartaffy/lazy_init.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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)
|
||||
|
||||
require('lazy').setup {
|
||||
spec = 'beartaffy.lazy',
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue