LazyVim/lua
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
..
config fix: Deperecated syntax in bootstrapping of LazyVim starter (#56) 2024-03-29 17:53:46 +01:00
plugins fix: removed some outdated examples 2024-03-21 17:47:04 +01:00