From a6f8d7ec6ff6476c27b3497a6bab395b838808fc Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 11 Feb 2024 06:34:01 -0800 Subject: [PATCH] aider: Add the redirect plugin to the `_config.yml`. # Aider chat conversation: USER: add the redirect plugin ASSISTANT: To add the Jekyll Redirect From plugin to your `_config.yml`, you need to add the plugin to the `plugins` list. Here's the diff for the change: ```diff --- _config.yml +++ _config.yml @@ ... @@ theme: jekyll-theme-cayman url: "https://aider.chat" +plugins: + - jekyll-redirect-from + defaults: - scope: path: "README.md" type: "pages" values: description: "A command-line chat tool for coding with GPT" ``` --- _config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/_config.yml b/_config.yml index b6c6e72dd..e74f4c25c 100644 --- a/_config.yml +++ b/_config.yml @@ -1,6 +1,9 @@ theme: jekyll-theme-cayman url: "https://aider.chat" +plugins: + - jekyll-redirect-from + defaults: - scope: path: "README.md"