feat: update vim.loop refs

This commit is contained in:
Matthew Leong 2023-10-31 07:55:20 -07:00
parent 1a7c3ba6ed
commit 3a656a59fb
3 changed files with 3 additions and 3 deletions

View file

@ -131,7 +131,7 @@ local config = {
'ggandor/lightspeed.nvim', 'ggandor/lightspeed.nvim',
{ {
'romgrk/barbar.nvim', 'romgrk/barbar.nvim',
dependencies = { 'kyazdani42/nvim-web-devicons' }, dependencies = { 'nvim-tree/nvim-web-devicons' },
}, },
}, },
} }

View file

@ -10,7 +10,7 @@ local cosmic_modules = {
-- set up lazy.nvim to install plugins -- set up lazy.nvim to install plugins
local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim' local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then if not vim.uv.fs_stat(lazypath) then
vim.fn.system({ vim.fn.system({
'git', 'git',
'clone', 'clone',

View file

@ -119,7 +119,7 @@ return {
-- still show a recording occuring because `vim.fn.reg_recording` hasn't emptied yet. -- still show a recording occuring because `vim.fn.reg_recording` hasn't emptied yet.
-- So what we need to do is wait a tiny amount of time (in this instance 50 ms) to -- So what we need to do is wait a tiny amount of time (in this instance 50 ms) to
-- ensure `vim.fn.reg_recording` is purged before asking lualine to refresh. -- ensure `vim.fn.reg_recording` is purged before asking lualine to refresh.
local timer = vim.loop.new_timer() local timer = vim.uv.new_timer()
timer:start( timer:start(
50, 50,
0, 0,