-
Notifications
You must be signed in to change notification settings - Fork 65
Closed
Description
On Windows, the nvim is
NVIM v0.10.4
Build type: Release
LuaJIT 2.1.1713484068
Run "nvim -V1 -v" for more info
,which was installed by "winget install Neovim.Neovim"
init.lua is minimal,
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git", "clone", "--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
local plugins = {
{ "will133/vim-dirdiff" },
}
-- Setup all plugins with Lazy
require("lazy").setup(plugins)
Comparing 2 same folders using vim and nvim,
Upper is nvim: you can see it cannot find the difference betweew 2 folders.
Lower is vim, which is just fine.
I checked that on Linux, it works fine with nvim.
Thanks
Metadata
Metadata
Assignees
Labels
No labels
