Skip to content

Instantly share code, notes, and snippets.

@ZoranJambor
Created March 6, 2024 22:57
Show Gist options
  • Save ZoranJambor/d1eb94def553d1abe8bcfa5d4c163e6a to your computer and use it in GitHub Desktop.
Save ZoranJambor/d1eb94def553d1abe8bcfa5d4c163e6a to your computer and use it in GitHub Desktop.
My Current VS Code Settings
{
"gitlens.codeLens.enabled": false,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 16,
"editor.lineHeight": 34,
"editor.fontFamily": "'Monaspace Neon', 'JetBrains Mono', 'Fira Code', 'Iosevka', 'Cascadia Code', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"html.format.maxPreserveNewLines": 1,
"html.format.preserveNewLines": false,
"prettier.useEditorConfig": false,
"terminal.integrated.lineHeight": 1.4,
"sync.autoUpload": true,
"sync.gist": "3b86932b289411fee727cda64ca3846d",
"sync.syncExtensions": true,
"sync.quietSync": true,
"prettier.singleQuote": true,
"prettier.trailingComma": "es5",
"prettier.tabWidth": 4,
"todo-tree.tree.showScanModeButton": false,
"files.defaultLanguage": "${activeEditorLanguage}",
"eslint.alwaysShowStatus": true,
"eslint.lintTask.enable": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"vue"
],
"editor.multiCursorModifier": "ctrlCmd",
"workbench.editor.wrapTabs": true,
"debug.console.fontSize": 14,
"markdown.preview.fontSize": 18,
"workbench.productIconTheme": "fluent-icons",
"workbench.colorCustomizations": {
"editor.selectionBackground": "#7c7c7ca9",
"tab.activeBorderTop": "#FF5C9800", // Active Tab Top Highlighting
"tab.activeBorder": "#FF5C98" // Active Tab Top Highlighting
},
"editor.accessibilitySupport": "off",
"editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"terminal.integrated.gpuAcceleration": "off",
"prettier.enableDebugLogs": true,
"editor.cursorBlinking": "smooth",
"editor.minimap.size": "fill",
"editor.minimap.renderCharacters": false,
"editor.suggest.showStatusBar": true,
"workbench.sideBar.location": "right",
"editor.renderWhitespace": "all",
"files.trimTrailingWhitespace": true,
"editor.bracketPairColorization.enabled": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"files.simpleDialog.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": "never"
},
"stylelint.enable": true,
"stylelint.snippet": ["css", "postcss"],
"peacock.favoriteColors": [
{
"name": "Angular Red",
"value": "#dd0531"
},
{
"name": "Azure Blue",
"value": "#007fff"
},
{
"name": "JavaScript Yellow",
"value": "#f9e64f"
},
{
"name": "Mandalorian Blue",
"value": "#1857a4"
},
{
"name": "Node Green",
"value": "#215732"
},
{
"name": "React Blue",
"value": "#61dafb"
},
{
"name": "Something Different",
"value": "#832561"
},
{
"name": "Svelte Orange",
"value": "#ff3d00"
},
{
"name": "Vue Green",
"value": "#42b883"
}
],
"files.associations": {
".stylelintrc": "json"
},
"stylelint.validate": ["css", "less", "postcss", "postcss-scss", "scss"],
"css.validate": false,
"scss.validate": false,
"prettier.requireConfig": true,
"[Log]": {
"editor.fontSize": 12,
"editor.lineHeight": 20
},
"terminal.external.osxExec": "Warp.app",
"emmet.triggerExpansionOnTab": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"html-css-class-completion.enableEmmetSupport": true,
"html-css-class-completion.includeGlobPattern": "**/*.{css,scss,html}",
"html-css-class-completion.HTMLLanguages": [
"html",
"vue",
"razor",
"blade",
"handlebars",
"twig",
"django-html",
"php",
"markdown",
"erb",
"ejs",
"svelte"
],
"css.styleSheets": [
"/styles/prettier.css",
"/styles/prettier.scss",
"/styles/stylelint.css",
"/styles/stylelint.scss"
],
"html-to-css-autocompletion.autocompletionFilesScope": "workspace",
"svg.preview.mode": "svg",
"css.format.enable": false,
"editor.colorDecorators": false,
"editor.guides.bracketPairs": true,
"vim.handleKeys": {
"<C-d>": false,
"<C-s>": false,
"<C-z>": false
},
"vim.visualModeKeyBindings": [],
"editor.stickyScroll.enabled": true,
"workbench.colorTheme": "Evro Dark",
"window.commandCenter": true,
"files.readonlyInclude": {
"dist/**": true,
"node_modules/**": true
},
"workbench.iconTheme": "sweet-vscode-icons",
"workbench.editor.enablePreview": false,
"window.zoomLevel": 1,
"editor.fontVariations": false,
"editor.fontWeight": "normal",
"settingsSync.ignoredExtensions": [
],
"accessibility.signals.diffLineDeleted": {
"sound": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment