Update README.md

When copying the new instructions (using `uv` instead of `loop`) into my config I receive the following error:
```
Error detected while processing /home/damiano/.config/nvim/init.lua:
E5113: Error while calling lua chunk: /home/damiano/.config/nvim/init.lua:19: attempt to index field 'uv' (a nil value)
stack traceback:
        /home/damiano/.config/nvim/init.lua:19: in main chunk
Press ENTER or type command to continue
```
This commit is contained in:
damianoognissanti 2024-03-27 09:08:06 +01:00 committed by GitHub
commit 56a909db64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,7 +38,7 @@ You can add the following Lua code to your `init.lua` to bootstrap **lazy.nvim**
```lua
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.uv.fs_stat(lazypath) then
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",