Skip to content

Commit

Permalink
deprecate vim.loop
Browse files Browse the repository at this point in the history
  • Loading branch information
mosheavni committed May 7, 2024
1 parent 857cabd commit cb24bb3
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .config/nvim/lua/core/lazy-bootstrap.lua
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
vim.system({
'git',
'clone',
'--filter=blob:none',
'--single-branch',
'https://github.com/folke/lazy.nvim.git',
lazypath,
}):wait()
vim
.system({
'git',
'clone',
'--filter=blob:none',
'--single-branch',
'https://github.com/folke/lazy.nvim.git',
lazypath,
})
:wait()
end
vim.opt.runtimepath:prepend(lazypath)

0 comments on commit cb24bb3

Please sign in to comment.