Skip to content

Instantly share code, notes, and snippets.

@codejota
Last active July 19, 2024 17:47
Show Gist options
  • Save codejota/44a29319aa43ce2a06bc146aafd300b5 to your computer and use it in GitHub Desktop.
Save codejota/44a29319aa43ce2a06bc146aafd300b5 to your computer and use it in GitHub Desktop.
vscode setting.json
{
// ====================
// VISUAL CONFIGURATION
// ====================
"workbench.colorCustomizations": {
"tab.activeBorderTop": "#00000000",
"editorCursor.foreground": "#cecece"
},
// ===================
// 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
},
// =====================
// Fonts Config
// =====================
"editor.fontFamily": "JetBrainsMono Nerd Font",
"scm.inputFontFamily": "Geist Mono",
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
"chat.editor.fontFamily": "Geist Mono",
"debug.console.fontFamily": "Geist Mono",
"editor.codeLensFontFamily": "Geist Mono",
"notebook.output.fontFamily": "Geist Mono",
"markdown.preview.fontFamily": "Geist Mono",
"editor.inlayHints.fontFamily": "Geist Mono",
// =====================
// GENERAL CONFIGURATION
// =====================
"workbench.settings.editor": "json",
"workbench.startupEditor": "welcomePage",
"editor.lineHeight": 1.8,
"window.zoomLevel": 0,
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 12,
"terminal.integrated.fontSize": 14,
"explorer.compactFolders": false,
"workbench.tree.indent": 20,
"editor.renderWhitespace": "none",
"editor.rulers": [80, 120],
"editor.wordWrap": "on",
"extensions.ignoreRecommendations": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"files.associations": {
".env.*": "dotenv",
".prettierrc": "json",
"*.css": "css",
".dev.vars": "dotenv",
".rb": "ruby"
},
"editor.parameterHints.enabled": true,
"editor.renderLineHighlight": "gutter",
"editor.suggestSelection": "first",
"explorer.confirmDelete": false,
"terminal.integrated.showExitAlert": false,
"workbench.editor.labelFormat": "short",
"editor.fontLigatures": true,
"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"
],
"git.enableSmartCommit": true,
"explorer.confirmDragAndDrop": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"terminal.integrated.gpuAcceleration": "on",
"terminal.integrated.defaultProfile.osx": "zsh",
"editor.semanticHighlighting.enabled": false,
"editor.tabSize": 2,
"console-ninja.featureSet": "Community",
"prettier.tabWidth": 2,
"workbench.editor.empty.hint": "hidden",
"update.showReleaseNotes": true,
"editor.detectIndentation": false,
"editor.bracketPairColorization.enabled": false,
"workbench.activityBar.location": "bottom",
"editor.minimap.enabled": false,
"breadcrumbs.enabled": true,
"window.commandCenter": false,
"workbench.layoutControl.enabled": false,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"workbench.statusBar.visible": true,
"zenMode.fullScreen": false,
"zenMode.hideStatusBar": false,
"zenMode.showTabs": "multiple",
"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"
],
"zenMode.hideLineNumbers": false,
"zenMode.silentNotifications": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/.vscodeignore": true,
"**/.gitattributes": true,
"**/.gitignore": true
},
"fiveServer.openTerminal": false,
"remote.autoForwardPortsSource": "hybrid",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.accessibilitySupport": "off",
"workbench.colorTheme": "Nightly Wolf",
"glassit.alpha": 100,
"glassit.force_sway": true,
"explorer.sortOrder": "foldersNestsFiles",
"discord.removeRemoteRepository": true,
"discord.removeLowerDetails": true,
"glassit.step": 2,
"code-runner.runInTerminal": true,
"code-runner.clearPreviousOutput": true,
"terminal.external.osxExec": "Warp.app",
"terminal.explorerKind": "external",
"terminal.integrated.shell.osx": "/bin/zsh",
// "workbench.sideBar.location": "left",
"workbench.sideBar.location": "right",
"terminal.integrated.env.osx": {},
"editor.autoClosingBrackets": "always",
"git.confirmSync": false,
"window.density.editorTabHeight": "compact",
"workbench.productIconTheme": "icons-carbon-tweaked"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment