From 5c0bd45b15c465289462127802449836a8447f97 Mon Sep 17 00:00:00 2001 From: Amrutesh Naregal <107930548+DragonEmperor9480@users.noreply.github.com> Date: Fri, 24 Apr 2026 16:04:54 +0530 Subject: [PATCH] docs: Add instructions for fish shell configuration --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 17dcc3f..30845b3 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,11 @@ After installing Golang, _open a new shell session_ and run `go version` to make # Next, reload your shell configuration source ~/.bashrc ``` - + ```sh + # For Linux/WSL(for fish shell) + echo 'set -gx PATH $PATH $HOME/go/bin' >> ~/.config/fish/config.fish + source ~/.config/fish/config.fish + ``` ```sh # For macOS echo 'export PATH=$PATH:$HOME/.local/opt/go/bin' >> ~/.zshrc