refactor(nvim): do not disable netrw

This previously disabled the ability to edit over SSH/SCP
This commit is contained in:
Price Hiller 2023-04-17 06:27:41 -05:00
parent 1d88c58a53
commit a35d4c6316
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -3,10 +3,6 @@ local g = vim.g
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