Created
November 6, 2025 09:43
-
-
Save yunnysunny/a8bd05d22cca740654a2301f43f2b600 to your computer and use it in GitHub Desktop.
cursor user settings on Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "window.commandCenter": true, | |
| "workbench.colorTheme": "Default Dark+", | |
| "files.autoSave": "afterDelay", | |
| "git.path": "d:/program files/git/bin/git.exe", | |
| "workbench.activityBar.orientation": "vertical", | |
| "terminal.integrated.profiles.windows": { | |
| "PowerShell 7": { | |
| "source": "PowerShell", | |
| "path": "C:\\Program Files\\PowerShell\\7\\pwsh.exe" | |
| }, | |
| "PowerShell": { | |
| "source": "PowerShell", | |
| "icon": "terminal-powershell" | |
| }, | |
| "Command Prompt": { | |
| "path": [ | |
| "${env:windir}\\Sysnative\\cmd.exe", | |
| "${env:windir}\\System32\\cmd.exe" | |
| ], | |
| "args": [], | |
| "icon": "terminal-cmd" | |
| }, | |
| "Git Bash": { | |
| "source": "Git Bash" | |
| } | |
| }, | |
| "terminal.integrated.defaultProfile.windows": "PowerShell 7" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment