Last active
September 30, 2024 21:13
-
-
Save codejota/44a29319aa43ce2a06bc146aafd300b5 to your computer and use it in GitHub Desktop.
vscode setting.json
This file contains 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
{ | |
// ==================== | |
// VISUAL CONFIGURATION | |
// ==================== | |
"workbench.colorCustomizations": { | |
"tab.activeBorderTop": "#00000000", | |
"editorCursor.foreground": "#cecece", | |
"scrollbarSlider.background": "#FF3E3E30", | |
"scrollbarSlider.hoverBackground": "#FF3E3E30", | |
"scrollbarSlider.activeBackground": "#FF3E3E30" | |
}, | |
"workbench.colorTheme": "Nightly Wolf", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.productIconTheme": "icons-carbon-tweaked", | |
// =================== | |
// UI/UX CONFIGURATION | |
// =================== | |
"apc.activityBar": { | |
"position": "bottom", | |
"hideSettings": true, | |
"size": 28 | |
}, | |
"apc.menubar.compact": false, | |
"apc.electron": { | |
"titleBarStyle": "hiddenInset", | |
"frame": false, | |
"vibrancy": "ultra-dark" | |
}, | |
"apc.header": { | |
"height": 30 | |
}, | |
"apc.statusBar": { | |
"position": "editor-bottom", | |
"height": 20, | |
"fontSize": 11 | |
}, | |
"apc.stylesheet": { | |
".title-label > h2": "display: none", | |
".title-label": "display: none !important", | |
".titlebar-center": "display: none !important", | |
".split-view-view .visible": "opacity: 0.90; transparency: 0.1", | |
".inline-tabs-placeholder": "display: none !important", | |
".part.editor > .content .editor-group-container > .title .tabs-container .tab.sizing-fit": { | |
"border-radius": "0px 15px 0px 0px" | |
} | |
}, | |
"apc.listRow": { | |
"height": 20, | |
"fontSize": 12 | |
}, | |
"workbench.activityBar.location": "bottom", | |
"workbench.layoutControl.enabled": false, | |
"workbench.sideBar.location": "right", | |
"workbench.startupEditor": "welcomePage", | |
"workbench.tree.indent": 20, | |
"workbench.editor.labelFormat": "short", | |
"workbench.editor.empty.hint": "hidden", | |
// ===================== | |
// EDITOR CONFIGURATION | |
// ===================== | |
"editor.fontFamily": "JetBrainsMono Nerd Font", | |
"editor.fontSize": 12, | |
"editor.lineHeight": 1.8, | |
"editor.wordWrap": "on", | |
"editor.renderWhitespace": "none", | |
"editor.rulers": [80, 120], | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.detectIndentation": false, | |
"editor.bracketPairColorization.enabled": false, | |
"editor.minimap.enabled": false, | |
"editor.renderLineHighlight": "gutter", | |
"editor.parameterHints.enabled": true, | |
"editor.suggestSelection": "first", | |
"editor.tabSize": 2, | |
"editor.autoClosingBrackets": "always", | |
"editor.fontLigatures": true, | |
"editor.codeLensFontFamily": "Geist Mono", | |
"editor.inlayHints.fontFamily": "Geist Mono", | |
"editor.scrollbar.vertical": "visible", | |
"editor.scrollbar.horizontal": "visible", | |
"editor.scrollbar.verticalScrollbarSize": 8, | |
"editor.scrollbar.horizontalScrollbarSize": 8, | |
"editor.accessibilitySupport": "off", | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"editor.semanticHighlighting.enabled": false, | |
// ===================== | |
// TERMINAL CONFIGURATION | |
// ===================== | |
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font", | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.gpuAcceleration": "on", | |
"terminal.integrated.showExitAlert": false, | |
"terminal.integrated.defaultProfile.osx": "zsh", | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"terminal.explorerKind": "external", | |
"terminal.external.osxExec": "Warp.app", | |
"terminal.integrated.env.osx": {}, | |
// ===================== | |
// FONT CONFIGURATION | |
// ===================== | |
"scm.inputFontFamily": "Geist Mono", | |
"chat.editor.fontFamily": "Geist Mono", | |
"debug.console.fontFamily": "Geist Mono", | |
"notebook.output.fontFamily": "Geist Mono", | |
"markdown.preview.fontFamily": "Geist Mono", | |
// ===================== | |
// FILE NESTING CONFIGURATION | |
// ===================== | |
"explorer.fileNesting.enabled": true, | |
"explorer.fileNesting.expand": false, | |
"explorer.fileNesting.patterns": { | |
"package.json": ".eslint*, prettier*, tsconfig*, vite*, pnpm-lock*, bun.lockb, nest*", | |
"tailwind.config.js": "tailwind.config*, postcss.config*", | |
"*.env": ".env.*", | |
"Gemfile": "Gemfile.lock", | |
"Dockerfile": ".dockerfile*, docker-compose*, Dockerfile*, .dockerignore, docker-compose.yml, docker-compose.override.yml", | |
".gitignore": ".gitattributes, .gitmodules, .gitkeep", | |
"*.rb": "${basename}_test.rb, ${basename}_spec.rb", | |
"Rakefile": "*.rake" | |
}, | |
// ===================== | |
// FILE ASSOCIATIONS | |
// ===================== | |
"files.associations": { | |
".env.*": "dotenv", | |
".prettierrc": "json", | |
"*.css": "css", | |
".dev.vars": "dotenv", | |
".rb": "ruby" | |
}, | |
// ===================== | |
// FORMATTING | |
// ===================== | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "vscode.css-language-features" | |
}, | |
"[ruby]": { | |
"editor.defaultFormatter": "misogi.ruby-rubocop" | |
}, | |
"prettier.tabWidth": 2, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit" | |
}, | |
// ===================== | |
// OTHER CONFIGURATIONS | |
// ===================== | |
"workbench.settings.editor": "json", | |
"window.zoomLevel": 0, | |
"explorer.compactFolders": false, | |
"extensions.ignoreRecommendations": true, | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/*.code-search": true, | |
"**/.vscodeignore": true, | |
"**/.gitattributes": true, | |
"**/.gitignore": true | |
}, | |
"git.enableSmartCommit": true, | |
"git.confirmSync": false, | |
"window.commandCenter": false, | |
"window.density.editorTabHeight": "compact", | |
"update.showReleaseNotes": true, | |
"breadcrumbs.enabled": true, | |
"zenMode.fullScreen": false, | |
"zenMode.hideStatusBar": false, | |
"zenMode.showTabs": "multiple", | |
"zenMode.hideLineNumbers": false, | |
"zenMode.silentNotifications": false, | |
"auto-close-tag.activationOnLanguage": [ | |
"xml", | |
"php", | |
"blade", | |
"ejs", | |
"jinja", | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact", | |
"plaintext", | |
"markdown", | |
"vue", | |
"liquid", | |
"erb", | |
"rb", | |
"lang-cfml", | |
"cfml", | |
"HTML (EEx)", | |
"plist", | |
"json", | |
"ruby", | |
"rails" | |
], | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"typescript": "typescriptreact", | |
"ruby": "html", | |
"erb": "html" | |
}, | |
"cSpell.enableFiletypes": [ | |
"!ruby", | |
"!asciidoc", | |
"!c", | |
"!cpp", | |
"!csharp", | |
"!go", | |
"!handlebars", | |
"!haskell", | |
"!jade", | |
"!java", | |
"!latex", | |
"!php", | |
"!pug", | |
"!python", | |
"!restructuredtext", | |
"!rust", | |
"!scala", | |
"!scss" | |
], | |
"fiveServer.openTerminal": false, | |
"remote.autoForwardPortsSource": "hybrid", | |
"code-runner.runInTerminal": true, | |
"code-runner.clearPreviousOutput": true, | |
"discord.removeRemoteRepository": true, | |
"discord.removeLowerDetails": true, | |
"terminal.integrated.splitCwd": "workspaceRoot", | |
"console-ninja.featureSet": "Community", | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.codeLens.enabled": false, | |
"gitlens.statusBar.enabled": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment