From 161d6c5068992a8b46ecbe080c231182fc2bd9a4 Mon Sep 17 00:00:00 2001 From: Jason Finch Date: Mon, 19 Jan 2026 12:30:40 +1000 Subject: [PATCH] Update README with Windows editor configuration Added instructions for configuring VS Code as the default editor on Windows. --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 94742ac4..00d40a8f 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,16 @@ editor. For example, if you'd like to use `vim`: xdg-mime default vim.desktop text/x-csrc ``` +If you are on windows, you can configure an editor (like VS Code) like this: +```cmd +//cmd +set "EDITOR=code --wait" +``` +```powershell +//powershell +setx EDITOR "code --wait" +``` + Once installed, run the init process: ```