LazyVim/lua/config
denartha10 75625b29e8
fix: Deperecated syntax in bootstrapping of LazyVim starter (#56)
In the current state of the lazy.nvim repository, certain updates have been made. However, there remains an outdated reference to 'vim.loop' for the bootstrapping process of 'lazyvim' in this start repo for LazyVim, despite 'vim.loop' being deprecated. To rectify this, I suggest a minor alteration by replacing it with the following code snippet:

```lua
if not (vim.uv or vim.loop).fs_stat(lazypath) then
    -- bootstrap
do
```
2024-03-29 17:53:46 +01:00
..
autocmds.lua docs: added comments to config files 2023-01-07 10:52:40 +01:00
keymaps.lua docs: added comments to config files 2023-01-07 10:52:40 +01:00
lazy.lua fix: Deperecated syntax in bootstrapping of LazyVim starter (#56) 2024-03-29 17:53:46 +01:00
options.lua docs: added comments to config files 2023-01-07 10:52:40 +01:00