Skip to content

Instantly share code, notes, and snippets.

@emadabdulrahim
Created March 19, 2026 17:47
Show Gist options
  • Select an option

  • Save emadabdulrahim/d79305dde97cf00e746abdbc2c8333e8 to your computer and use it in GitHub Desktop.

Select an option

Save emadabdulrahim/d79305dde97cf00e746abdbc2c8333e8 to your computer and use it in GitHub Desktop.
Cursor editor setup — settings, keybindings, extensions

Cursor Setup

Settings

Location: ~/Library/Application Support/Cursor/User/settings.json

{
  "window.commandCenter": true,
  "workbench.colorTheme": "GitHub Dark Default",
  "security.promptForLocalFileProtocolHandling": false,
  "update.releaseTrack": "prerelease",
  "window.newWindowProfile": "default",
  "amp.url": "https://ampcode.com/"
}

Keybindings

Location: ~/Library/Application Support/Cursor/User/keybindings.json

[
    {
        "key": "cmd+i",
        "command": "composerMode.agent"
    },
    {
        "key": "shift+enter",
        "command": "workbench.action.terminal.sendSequence",
        "args": {
            "text": "\\\r\n"
        },
        "when": "terminalFocus"
    }
]

Extensions

cursor --install-extension anthropic.claude-code
cursor --install-extension github.github-vscode-theme
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment