Skip to content

Instantly share code, notes, and snippets.

@adydetra
Last active May 20, 2024 11:30
Show Gist options
  • Save adydetra/25f3691198ef9cc7082f9cb31192ade9 to your computer and use it in GitHub Desktop.
Save adydetra/25f3691198ef9cc7082f9cb31192ade9 to your computer and use it in GitHub Desktop.
VS Code settings by me
{
// Editor
"editor.fontFamily": "Dank Mono",
"editor.fontLigatures": true,
"editor.cursorBlinking": "smooth",
"editor.fontSize": 15,
"editor.lineHeight": 2,
"editor.suggestFontSize": 15,
"editor.suggestLineHeight": 28,
"editor.tabSize": 2,
"editor.codeActionsOnSave": { //For ESLint
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
//Terminal
"terminal.integrated.defaultProfile.windows": "Git Bash",
// Theme
"editor.minimap.enabled": false,
"workbench.productIconTheme": "icons-carbon",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Bearded Theme Arc",
// UI
"window.title": "VS Code - Dewa",
"editor.folding": false,
"editor.glyphMargin": false,
"breadcrumbs.enabled": false,
"workbench.sideBar.location": "left",
// Discord Rich Presence
"vscord.app.name": "Visual Studio Code",
"vscord.status.buttons.button1.git.active.enabled": false,
"vscord.status.details.text.debugging": "",
"vscord.status.details.text.editing": "",
"vscord.status.details.text.idle": ":/",
"vscord.status.details.text.notInFile": ":/",
"vscord.status.details.text.viewing": "",
"vscord.status.idle.enabled": false,
"vscord.status.idle.timeout": 900,
"vscord.status.image.small.notInFile.text": "😴",
"vscord.status.problems.enabled": false,
"vscord.status.showElapsedTime": false,
"vscord.status.state.text.editing": "",
// ESLint
"eslint.experimental.useFlatConfig": true,
"eslint.validate": [
"javascript",
"typescript",
"vue",
"html",
"markdown",
"json",
"jsonc",
"json5",
"yaml"
],
// Prettier
"prettier.printWidth": 200,
"prettier.singleQuote": true,
// Vite
"vite.autoStart": false,
// More
"codesnap.transparentBackground": true,
"workbench.startupEditor": "none",
"explorer.confirmDelete": false,
"git.autofetch": true,
"files.autoSave": "afterDelay",
"files.exclude": {
"**/.nuxt": true,
"**/node_modules": true
},
"security.workspace.trust.untrustedFiles": "open",
"editor.stickyScroll.enabled": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment