mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
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:
parent
65887ea871
commit
56a909db64
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ You can add the following Lua code to your `init.lua` to bootstrap **lazy.nvim**
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
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({
|
vim.fn.system({
|
||||||
"git",
|
"git",
|
||||||
"clone",
|
"clone",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue