nvim-lua / kickstart.nvim

A launch point for your personal nvim configuration
MIT License
16.69k stars 16.61k forks source link

refactor: replace vim.loop with vim.uv #956

Open mrr11k opened 1 month ago

mrr11k commented 1 month ago

This PR uses vim.uv instead of the deprecated vim.loop.

See https://github.com/neovim/neovim/pull/22846 for more info.

seanbreckenridge commented 1 month ago

The lazy instructions use a or, incase the user is on older systems to allow using vim.loop still:

if not (vim.uv or vim.loop).fs_stat(lazypath) then

I know kickstart targets stable, but should probably match that instead of requiring the user to be on v0.10+, would lead to one less error if a user happened to be on an old version