From 242912c016d60de615a0053c6ca2370509569d6a Mon Sep 17 00:00:00 2001 From: Lucas Burns Date: Thu, 26 May 2022 18:54:04 -0500 Subject: [PATCH] update(plugin): allow for lf_netrw to be true --- plugin/lf.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/lf.lua b/plugin/lf.lua index 9afcf70..bf9189a 100644 --- a/plugin/lf.lua +++ b/plugin/lf.lua @@ -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})