If any is using lazy.nvim plugin manager, you can also disable netrw from there and won't need to disable it from yazi plugin:
require('lazy').setup {
-- other config...
-- DISABLE NETRW HERE
performance = {
rtp = {
disabled_plugins = {
'netrw',
'netrwPlugin', -- maybe just this one is enough
'netrwSettings',
'netrwFileHandlers',
},
},
},
}
Originally posted by @andradei in #802