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"
```
This commit is contained in:
Paul Gauthier 2024-02-11 06:34:01 -08:00
parent c8a732dde2
commit a6f8d7ec6f

View file

@ -1,6 +1,9 @@
theme: jekyll-theme-cayman
url: "https://aider.chat"
plugins:
- jekyll-redirect-from
defaults:
- scope:
path: "README.md"