From 10cc23f47197bc8e00c376dd9669c945cd7ac63d Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Fri, 20 Mar 2026 04:38:46 +0200 Subject: [PATCH] fix(fish): fix code block indentation in secrets.d README Change 3-space to 4-space indentation in ordered list code blocks to satisfy the markdown-table-formatter's multiple-of-2 rule. --- config/fish/secrets.d/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/config/fish/secrets.d/README.md b/config/fish/secrets.d/README.md index 740c8ac..547ebcf 100644 --- a/config/fish/secrets.d/README.md +++ b/config/fish/secrets.d/README.md @@ -6,21 +6,21 @@ This directory contains sensitive environment variables like API tokens and cred 1. Copy an example file (e.g., `github.fish.example`) to remove the `.example` suffix: - ```bash - cp github.fish.example github.fish - ``` + ```bash + cp github.fish.example github.fish + ``` 2. Edit the file and replace placeholder values with your actual secrets: - ```bash - $EDITOR github.fish - ``` + ```bash + $EDITOR github.fish + ``` 3. Reload your fish shell or source the exports: - ```fish - source ~/.config/fish/exports.fish - ``` + ```fish + source ~/.config/fish/exports.fish + ``` ## Adding New Secret Files