Skip to content

Instantly share code, notes, and snippets.

@klim0824
Created April 6, 2025 14:38
Show Gist options
  • Select an option

  • Save klim0824/952a49196a6170b52aceafa23d2c2ad7 to your computer and use it in GitHub Desktop.

Select an option

Save klim0824/952a49196a6170b52aceafa23d2c2ad7 to your computer and use it in GitHub Desktop.
settings.json for VS Code
{
// Editor
"editor.lineNumbers": "interval",
"editor.cursorBlinking": "smooth",
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "boundary",
"editor.stickyScroll.enabled": true,
"explorer.fileNesting.enabled": true,
"telemetry.telemetryLevel": "off",
"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
"workbench.activityBar.location": "top",
"workbench.colorCustomizations": {
"editorIndentGuide.background1": "#8b008b66",
"editorIndentGuide.background2": "#00008099",
"editorIndentGuide.background3": "#228b2266",
"editorIndentGuide.background4": "#ffd70066",
"editorIndentGuide.background5": "#ff450066",
"editorIndentGuide.background6": "#b2222266",
"editorIndentGuide.activeBackground1": "#ffffff66",
"editorIndentGuide.activeBackground2": "#ffffff66",
"editorIndentGuide.activeBackground3": "#ffffff66",
"editorIndentGuide.activeBackground4": "#ffffff66",
"editorIndentGuide.activeBackground5": "#ffffff66",
"editorIndentGuide.activeBackground6": "#ffffff66"
},
"workbench.editor.customLabels.patterns": {
"**/*": "${dirname}/${filename}.${extname}",
},
"workbench.editor.pinnedTabSizing": "shrink",
"workbench.editorAssociations": {
"*.svg": "default"
},
// Theme
"workbench.colorTheme": "ktrz-monokai",
"workbench.iconTheme": "material-icon-theme",
// Git
"git.confirmSync": false,
// Languages
"javascript.inlayHints.functionLikeReturnTypes.enabled": true,
"javascript.inlayHints.parameterNames.enabled": "all",
"javascript.inlayHints.parameterTypes.enabled": true,
"javascript.inlayHints.propertyDeclarationTypes.enabled": true,
"javascript.inlayHints.variableTypes.enabled": true,
"typescript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterTypes.enabled": true,
"typescript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.variableTypes.enabled": false,
// Extensions
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false,
"typescriptreact": false
},
"github.copilot.nextEditSuggestions.enabled": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment