Skip to content

Instantly share code, notes, and snippets.

@ghaiklor
Created July 31, 2021 17:42
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 ghaiklor/f1738e13c25101c63f2bb35f3f08561f to your computer and use it in GitHub Desktop.
Save ghaiklor/f1738e13c25101c63f2bb35f3f08561f to your computer and use it in GitHub Desktop.
Visual Studio Code Settings (TypeScript\Rust\Ruby\Bash)
{
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"cSpell.allowCompoundWords": true,
"cSpell.language": "en, ru, uk",
"debug.javascript.autoAttachFilter": "disabled",
"debug.javascript.codelens.npmScripts": "never",
"debug.showBreakpointsInOverviewRuler": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": true,
"editor.cursorStyle": "block",
"editor.fontFamily": "FiraCode Nerd Font",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.minimap.renderCharacters": false,
"editor.minimap.showSlider": "always",
"editor.parameterHints.cycle": true,
"editor.renderLineHighlight": "all",
"editor.renderWhitespace": "boundary",
"editor.showFoldingControls": "always",
"editor.smoothScrolling": true,
"editor.suggest.showStatusBar": true,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "on",
"errorLens.gutterIconSet": "borderless",
"errorLens.gutterIconsEnabled": true,
"errorLens.messageTemplate": "$severity [1/$count] $message [$source] <$code>",
"eslint.alwaysShowStatus": true,
"eslint.format.enable": true,
"explorer.autoReveal": "focusNoScroll",
"explorer.confirmDragAndDrop": false,
"explorer.incrementalNaming": "smart",
"files.autoSave": "onFocusChange",
"files.enableTrash": false,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"git.autofetch": "all",
"git.pruneOnFetch": true,
"gitProjectManager.baseProjectsFolders": [
"~/Library/Projects"
],
"gitProjectManager.displayProjectPath": true,
"gitlens.codeLens.enabled": false,
"gitlens.hovers.enabled": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"json.schemaDownload.enable": true,
"monorepoWorkspace.folders.prefix.apps": "",
"monorepoWorkspace.folders.prefix.libs": "",
"monorepoWorkspace.folders.prefix.root": "",
"monorepoWorkspace.folders.prefix.tools": "",
"monorepoWorkspace.folders.prefix.unknown": "",
"ruby.format": "rubocop",
"ruby.useBundler": true,
"ruby.useLanguageServer": true,
"scm.defaultViewMode": "tree",
"search.showLineNumbers": true,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.enableBell": true,
"terminal.integrated.fontSize": 16,
"typescript.updateImportsOnFileMove.enabled": "always",
"window.dialogStyle": "custom",
"window.newWindowDimensions": "maximized",
"window.title": "${activeEditorMedium}${separator}${rootName}",
"window.titleBarStyle": "custom",
"workbench.colorTheme": "Default Dark+",
"workbench.editor.decorations.badges": true,
"workbench.editor.decorations.colors": true,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.tabCloseButton": "off",
"workbench.editor.wrapTabs": true,
"workbench.fontAliasing": "auto",
"workbench.iconTheme": "vscode-icons",
"workbench.list.keyboardNavigation": "filter",
"workbench.list.smoothScrolling": true,
"workbench.panel.opensMaximized": "never",
"workbench.startupEditor": "newUntitledFile",
"workbench.tree.indent": 16,
"workbench.tree.renderIndentGuides": "always",
"workbench.view.alwaysShowHeaderActions": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment