update(plugin): allow for lf_netrw to be true
This commit is contained in:
parent
38f491f6ba
commit
242912c016
|
@ -17,7 +17,7 @@ api.nvim_create_user_command(
|
|||
{nargs = "*", complete = "file"}
|
||||
)
|
||||
|
||||
if vim.g.lf_netrw == 1 then
|
||||
if vim.g.lf_netrw == 1 or vim.g.lf_netrw then
|
||||
local Path = require("plenary.path")
|
||||
local group = api.nvim_create_augroup("ReplaceNetrwWithLf", {clear = true})
|
||||
|
||||
|
|
Reference in New Issue