snailed
/
taolf
Archived
2
0
Fork 0

update(plugin): allow for lf_netrw to be true

This commit is contained in:
Lucas Burns 2022-05-26 18:54:04 -05:00
parent 38f491f6ba
commit 242912c016
No known key found for this signature in database
GPG Key ID: C011CBEF6628B679
1 changed files with 1 additions and 1 deletions

View File

@ -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})