How to Use Replit Launch Cursor on Windows 11

  1. Open up the Windows Terminal and run the command to generate your SSH key

ssh-keygen -t ed25519 -f "$env:USERPROFILE\.ssh\replit"

You can just press enter afterwards no need for a passphrase.

  1. Run this command to view and obtain your generated key

Get-Content "$env:USERPROFILE\.ssh\replit.pub"

This is the key you will be inputting and saving into Replit’s website.

  1. Adjust your SSH config

Open %USERPROFILE%.ssh\config in a text editor and ensure it looks like this

Host *.replit.dev
IdentityFile C:\Users\YourUsername.ssh\replit
User 328d0d20-b587-4eaa-9b0c-530125789c54

Image attached for example

image

  1. When prompted to select which OS in Cursor choose Linux

Your SSH connection to Replit should be successful.
Tested and working on Cursor Version 0.40.1

Thanks, I have some questions for step 3. Do i have to change the “user”? And why are you showing “image attached for example”?

Yes change the user to whichever was generated for you. The attached image is because your user should end at -00 no need to copy beyond that.