fix(nvim)!: disable netrw

This commit is contained in:
Price Hiller 2022-10-25 16:34:36 -05:00
parent ba92609fd8
commit f339fd3f4e

View File

@ -4,6 +4,9 @@ local M = {}
M.setup = function()
-- g.python3_host_prog = ("(%s)/.pyenv/shims/python3"):format(os.getenv("HOME"))
-- Disable netrw
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
end
return M