try to fix neodev

This commit is contained in:
2023-06-01 00:59:08 +02:00
parent 3c7148431f
commit 7f6817c852
2 changed files with 13 additions and 24 deletions

View File

@ -1,14 +1,14 @@
local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
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',
'--single-branch',
'https://github.com/folke/lazy.nvim.git',
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.runtimepath:prepend(lazypath)
vim.opt.rtp:prepend(lazypath)
require('lazy').setup('plugins', {})