Importing Extensions and Settings from VSCode
tip
Cursor is built on VSCode's core, which means you can bring your favorite VSCode extensions and settings with you!
Quick Guide
-
Find your VSCode settings location:
- Windows:
%APPDATA%\Code\User\
- macOS:
~/Library/Application Support/Code/User/
- Linux:
~/.config/Code/User/
- Windows:
-
Copy these files to Cursor:
- Windows:
%APPDATA%\Cursor\User\
- macOS:
~/Library/Application Support/Cursor/User/
- Linux:
~/.config/Cursor/User/
- Windows:
Detailed Steps
1. Locating Your VSCode Settings
First, you need to locate your VSCode settings files. The most important files are:
settings.json
- Contains your personalized settingskeybindings.json
- Contains your custom keyboard shortcutsextensions
folder - Contains your installed extensions
note
If you're using VSCode Insiders, the folder will be Code - Insiders
instead of Code
2. Copying Settings to Cursor
You have two options:
- Manual Copy
- Using Script
- Create the Cursor settings directory if it doesn't exist
- Copy
settings.json
andkeybindings.json
- Copy the contents of the
extensions
folder
# Windows (PowerShell)
Copy-Item "$env:APPDATA\Code\User\*" "$env:APPDATA\Cursor\User\" -Recurse -Force
# macOS/Linux
cp -r ~/Library/Application\ Support/Code/User/* ~/Library/Application\ Support/Cursor/User/
3. Verifying Extensions
After copying, you should:
- Restart Cursor
- Open the Extensions panel (Ctrl+Shift+X)
- Check that your extensions are listed
- Reinstall any extensions that didn't transfer correctly
caution
Some extensions might need to be reinstalled manually if they were installed from the marketplace
Common Issues and Solutions
Extensions Not Showing Up
If extensions don't appear after copying:
- Check the extension installation location
- Verify file permissions
- Try manually reinstalling the extension
Settings Not Applied
If your settings aren't being applied:
- Check for syntax errors in
settings.json
- Ensure the settings are compatible with Cursor
- Try restarting Cursor
Keybindings Conflicts
If you experience keybinding conflicts:
- Open
keybindings.json
- Look for duplicate shortcuts
- Resolve conflicts by removing or modifying conflicting bindings
Best Practices
- Backup First: Always backup your original VSCode settings before copying
- Start Clean: Consider starting with a fresh Cursor installation
- Selective Import: Import only the extensions and settings you actually use
- Test Extensions: Test each critical extension after importing