From 9127d15494f1ddcb729fe4cd33bff685a15a34dd Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Mon, 29 Jan 2024 18:53:50 +0530 Subject: [PATCH] Use tree-view as example --- docs/en/src/install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/src/install.md b/docs/en/src/install.md index b198975..921ec6b 100644 --- a/docs/en/src/install.md +++ b/docs/en/src/install.md @@ -72,7 +72,7 @@ programs.xplr = { plugins = { icons = fetchFromGitHub { owner = "sayanarijit"; - repo = "icons.xplr"; + repo = "tree-view.xplr"; }; local-plugin = "/home/user/.config/xplr/plugins/local-plugin"; }; @@ -80,7 +80,7 @@ programs.xplr = { package.path = os.getenv("LUA_PATH") .. ";" .. package.path package.cpath = os.getenv("LUA_CPATH") .. ";" .. package.cpath - require("icons").setup() + require("tree-view").setup() require("local-plugin").setup() ''; };