Skip to content

Instantly share code, notes, and snippets.

@NedcloarBR
Created July 8, 2024 17:27
Show Gist options
  • Save NedcloarBR/a2bb0cddbd95d1a7f3966a75decddec1 to your computer and use it in GitHub Desktop.
Save NedcloarBR/a2bb0cddbd95d1a7f3966a75decddec1 to your computer and use it in GitHub Desktop.
NedcloarBR's VSCode configuration
{
// Window
"window.commandCenter": false,
"window.titleBarStyle": "custom",
// Workbench
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Dracula",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.labelFormat": "short",
"workbench.statusBar.visible": true,
"workbench.layoutControl.enabled": false,
// Editor
"editor.tabSize": 2,
"editor.rulers": [
80,
120
],
"editor.detectIndentation": false,
"editor.inlayHints.fontFamily": "FiraCode Nerd Font",
"editor.fontFamily": "FiraCode Nerd Font",
"editor.codeLensFontFamily": "FiraCode Nerd Font",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.lineHeight": 0,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.guides.bracketPairsHorizontal": true,
"editor.minimap.enabled": false,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.wordWrap": "on",
"editor.inlineSuggest.enabled": true,
"editor.stickyScroll.enabled": false,
"editor.semanticHighlighting.enabled": true,
"editor.formatOnSave": true,
"editor.unicodeHighlight.nonBasicASCII": false,
"editor.suggestSelection": "first",
"editor.codeActionsOnSave": {},
// Explorer
"explorer.compactFolders": false,
"explorer.fileNesting.enabled": true,
// Breadcrumbs
"breadcrumbs.enabled": false,
// Terminal
"terminal.explorerKind": "external",
"terminal.integrated.fontFamily": "FiraCode Nerd Font",
"terminal.integrated.env.linux": {},
"terminal.external.linuxExec": "warp-terminal",
"terminal.integrated.env.windows": {},
// Security
"security.workspace.trust.untrustedFiles": "open",
// Extensions
"git.autofetch": true,
"git.confirmSync": false,
"git.terminalAuthentication": false,
"git.openRepositoryInParentFolders": "never",
"errorLens.excludeBySource": [],
"codesnap.showWindowTitle": true,
"codesnap.containerPadding": "0",
"codesnap.roundedCorners": false,
"diffEditor.ignoreTrimWhitespace": false,
"cSpell.language": "en, pt-BR",
"cSpell.userWords": [
"nedcloarbr",
"autofetch",
"codesnap",
"sonarcloud",
"sonarlint"
],
"apc.electron": {},
"sonarlint.connectedMode.connections.sonarcloud": [
{
"organizationKey": "nedcloarbr",
"connectionId": "SonarCloud VSCode Linter"
}
],
"remote.autoForwardPortsSource": "hybrid",
"console-ninja.featureSet": "Community",
"window.menuBarVisibility": "classic",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment