Last active
April 8, 2025 13:23
-
-
Save tomoima525/034c7f4360f238bbbdfe5b037937dcd6 to your computer and use it in GitHub Desktop.
settings.json for Cursor(VSCode)
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
{ | |
"editor.fontSize": 14, | |
"editor.tabSize": 2, | |
"editor.formatOnSave": true, | |
"explorer.confirmDelete": false, | |
"editor.wordWrap": "on", | |
"editor.wordWrapColumn": 120, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.formatOnType": true, | |
"peacock.favoriteColors": [ | |
{ | |
"name": "Angular Red", | |
"value": "#b52e31" | |
}, | |
{ | |
"name": "Auth0 Orange", | |
"value": "#eb5424" | |
}, | |
{ | |
"name": "Azure Blue", | |
"value": "#007fff" | |
}, | |
{ | |
"name": "C# Purple", | |
"value": "#68217A" | |
}, | |
{ | |
"name": "Gatsby Purple", | |
"value": "#639" | |
}, | |
{ | |
"name": "Go Cyan", | |
"value": "#5dc9e2" | |
}, | |
{ | |
"name": "Java Blue-Gray", | |
"value": "#557c9b" | |
}, | |
{ | |
"name": "JavaScript Yellow", | |
"value": "#f9e64f" | |
}, | |
{ | |
"name": "Mandalorian Blue", | |
"value": "#1857a4" | |
}, | |
{ | |
"name": "Node Green", | |
"value": "#215732" | |
}, | |
{ | |
"name": "React Blue", | |
"value": "#00b3e6" | |
}, | |
{ | |
"name": "Something Different", | |
"value": "#832561" | |
}, | |
{ | |
"name": "Vue Green", | |
"value": "#42b883" | |
} | |
], | |
"liveshare.featureSet": "stable", | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"java.project.importHint": false, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.formatOnPaste": true, | |
"security.workspace.trust.untrustedFiles": "open", | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"[rust]": { | |
"editor.defaultFormatter": "rust-lang.rust-analyzer" | |
}, | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"json.schemas": [], | |
"terminal.integrated.defaultProfile.osx": "zsh", | |
"[solidity]": { | |
"editor.defaultFormatter": "JuanBlanco.solidity" | |
}, | |
"editor.suggest.showMethods": true, | |
"editor.suggest.preview": true, | |
"editor.acceptSuggestionOnEnter": "on", | |
"editor.snippetSuggestions": "top", | |
"vim.vimrc.enable": true, | |
"explorer.confirmDragAndDrop": false, | |
"playwright.reuseBrowser": true, | |
"editor.inlineSuggest.enabled": true, | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": true, | |
"markdown": true, | |
"scminput": false, | |
"yaml": false | |
}, | |
"aws.codeWhisperer.importRecommendation": false, | |
"aws.codeWhisperer.includeSuggestionsWithCodeReferences": false, | |
"aws.codeWhisperer.shareCodeWhispererContentWithAWS": false, | |
"aws.lambda.recentlyUploaded": { | |
"profile:noxx": { | |
"us-west-2": "NoxxCdkStack-InviteStackgenerateCodes4FD3767B-iYGO2Ts7zeNa" | |
} | |
}, | |
"[noir]": {}, | |
"workbench.statusBar.visible": false, | |
"window.zoomLevel": -1, | |
"go.toolsManagement.autoUpdate": true, | |
"prisma.showPrismaDataPlatformNotification": false, | |
"github.copilot.editor.enableAutoCompletions": true, | |
"vim.normalModeKeyBindings": [ | |
{ | |
"before": ["C-w", "v"], | |
"after": [":", "v", "s", "<Enter>"] | |
}, | |
{ | |
"before": ["C-w", "s"], | |
"after": [":", "s", "p", "<Enter>"] | |
}, | |
{ | |
"before": [":"], | |
"commands": ["workbench.action.showCommands"], | |
"silent": true | |
} | |
], | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["g", "A"], | |
"commands": ["editor.action.goToReferences"] | |
}, | |
{ | |
"before": ["g", "space"], | |
"commands": ["editor.action.goToDeclaration"] | |
} | |
], | |
// Reuse the search editor when searching | |
"search.mode": "reuseEditor", | |
// Focus on the search results when searching | |
"search.searchEditor.focusResultsOnSearch": true, | |
// Don't start search until clicked | |
"search.searchOnType": false, | |
"vim.enableNeovim": true, | |
"makefile.configureOnOpen": false, | |
"cursor.cpp.disabledLanguages": ["scminput", "yaml"], | |
"editor.accessibilitySupport": "off" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment