mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-11 23:25:01 +00:00

# 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" ```
12 lines
232 B
YAML
12 lines
232 B
YAML
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"
|