From 66d9f7e58652be5243988c4df7017b5b2fddc9bd Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Mon, 29 Jan 2024 18:47:30 +0530 Subject: [PATCH] Minor doc fix --- docs/en/src/install.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/en/src/install.md b/docs/en/src/install.md index e34cd71..b198975 100644 --- a/docs/en/src/install.md +++ b/docs/en/src/install.md @@ -72,15 +72,16 @@ programs.xplr = { plugins = { icons = fetchFromGitHub { owner = "sayanarijit"; - repo = "wl-clipboard.xplr"; + repo = "icons.xplr"; }; - local-plugin = "/home/user/.config/plugins/local-plugin"; + local-plugin = "/home/user/.config/xplr/plugins/local-plugin"; }; extraConfig = '' package.path = os.getenv("LUA_PATH") .. ";" .. package.path package.cpath = os.getenv("LUA_CPATH") .. ";" .. package.cpath require("icons").setup() + require("local-plugin").setup() ''; }; ```