Skip to content

Commit

Permalink
fix: Replace vim.loop with vim.uv
Browse files Browse the repository at this point in the history
  • Loading branch information
Allaman committed Dec 18, 2024
1 parent 94ce0d8 commit 53680f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lua/utils/functions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ end

--- Check if path exists
M.path_exists = function(path)
return vim.loop.fs_stat(path)
return vim.uv.fs_stat(path)
end

-- toggle quickfixlist
Expand Down
1 change: 1 addition & 0 deletions lua/utils/icons.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- TODO: replace with mini.icons
return {
apps = {
Copilot = "",
Expand Down

0 comments on commit 53680f7

Please sign in to comment.