Skip to content

Instantly share code, notes, and snippets.

@Mokkapps
Last active February 16, 2023 11:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mokkapps/5214819b1df3155d17e655a3d42a0a12 to your computer and use it in GitHub Desktop.
Save Mokkapps/5214819b1df3155d17e655a3d42a0a12 to your computer and use it in GitHub Desktop.
VS Code Settings
{
// Visuals
"workbench.iconTheme": "vscode-icons",
"workbench.startupEditor": "welcomePage",
"workbench.fontAliasing": "antialiased",
"workbench.sideBar.location": "left",
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": false,
"window.zoomLevel": 1,
"window.nativeTabs": true,
"breadcrumbs.enabled": false,
// Editor
"editor.inlineSuggest.enabled": true,
"editor.accessibilitySupport": "off",
"editor.formatOnSave": true,
"editor.fontFamily": "Cascadia Code",
"editor.fontLigatures": true,
"editor.codeLens": true,
// "editor.accessibilitySupport": "off",
"editor.wordWrap": "on",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontSize": 13,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "keyword.other.dotenv",
"settings": {
"foreground": "#FF000000"
}
}
]
},
"editor.minimap.enabled": false,
"editor.suggestSelection": "first",
// Diff Editor
"diffEditor.ignoreTrimWhitespace": false,
// Git
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.untrackedChanges": "separate",
// Search exclude
"search.exclude": {
"**/.git": true,
"**/.github": true,
"**/.nuxt": true,
"**/.output": true,
"**/.pnpm": true,
"**/.vscode": true,
"**/.yarn": true,
"**/bower_components": true,
"**/dist/**": true,
"**/logs": true,
"**/node_modules": true,
"**/out/**": true,
"**/package-lock.json": true,
"**/pnpm-lock.yaml": true,
"**/tmp": true,
"**/yarn.lock": true
},
// Terminal
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.fontFamily": "Inconsolata-g for Powerline",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontWeight": "300",
"terminal.integrated.persistentSessionReviveProcess": "never",
"terminal.integrated.tabs.enabled": true,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
// Auto save
"files.autoSave": "onFocusChange"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment