Skip to content

CodeWithTaskin/vscode-customization

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

vscode-customization

Paste this code in setting.js in Visual Studio Code code

{
  "editor.fontSize": 18,
  "editor.wordWrap": "on",
  "editor.cursorSmoothCaretAnimation": "on",
  "editor.cursorBlinking": "expand",
  "editor.formatOnPaste": true,
  "editor.formatOnType": true,
  "editor.fontFamily": "Fira code",
  "editor.fontLigatures": true,
  "workbench.colorCustomizations": {
    "editorLineNumber.foreground": "#d3cdcd",
    "editorGroupHeader.tabsBackground": "#000000",
    "activityBar.background": "#000000",
    "activityBar.inactiveForeground": "#b1aeae",
    "sideBar.background": "#090909",
    "minimap.background": "#101012",
    "tab.activeBackground": "#000000",
    "tab.inactiveBackground": "#090812",
    "terminal.border": "#000000",
    "terminal.background": "#000000",
    "statusBar.background": "#f5f570",
    "statusBar.foreground": "#000000",
    "scrollbarSlider.background": "#b1b1b1",
    "scrollbarSlider.hoverBackground": "#8da6ce"
  },
  "editor.tokenColorCustomizations": {
    "comments": "#95afc0"
  },
  "editor.linkedEditing": true,
  "editor.bracketPairColorization.enabled": true,
  "editor.guides.bracketPairs": true,
  "editor.guides.bracketPairsHorizontal": true,
  "editor.hover.enabled": false,
  // Live Server
  "liveServer.settings.CustomBrowser": "chrome",
  "liveServer.settings.donotShowInfoMsg": true,
  "liveServer.settings.donotVerifyTags": true,
  // Live SASS Compiler
  "liveSassCompile.settings.formats": [
    {
      "format": "compressed",
      "extensionName": ".min.css",
      "savePath": "/css"
    }
  ],
  "liveSassCompile.settings.generateMap": false,
  // VS Code Theme Customization
  "workbench.iconTheme": "material-icon-theme",
  "workbench.editor.enablePreview": false,
  "terminal.integrated.defaultProfile.windows": "Command Prompt",
  "terminal.integrated.fontSize": 15,
  "diffEditor.wordWrap": "on",
  "security.workspace.trust.untrustedFiles": "open",
  "files.autoSaveDelay": 10,

  // Prettier Config
  "prettier.proseWrap": "always",
  "prettier.singleQuote": true,
  "prettier.arrowParens": "avoid",

  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  // Screencast Mode
  "screencastMode.onlyKeyboardShortcuts": true,
  "screencastMode.mouseIndicatorColor": "#f1c40f",
  "screencastMode.verticalOffset": 0,

  // Enable Emmet support for JSX
  "emmet.includeLanguages": {
    "javascript": "javascriptreact"
  },
  "editor.minimap.enabled": false,
  "code-runner.runInTerminal": true,
  "[c]": {
    "editor.defaultFormatter": "ms-vscode.cpptools"
  },
  "workbench.productIconTheme": "feather-vscode",
  "files.autoSave": "afterDelay",
  "editor.formatOnSave": true,
  "git.autofetch": true,
  "notebook.outline.showMarkdownHeadersOnly": false,
  "workbench.colorTheme": "Material Theme Ocean High Contrast",
  "git.suggestSmartCommit": false,
  "[cpp]": {
    "editor.defaultFormatter": "ms-vscode.cpptools"
  }
}

Screenshort

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages