Skip to content

Instantly share code, notes, and snippets.

@RowanFeely
Last active June 29, 2020 23:21
Show Gist options
  • Save RowanFeely/5fe5d96f38a78a538562e3d8876a2ff1 to your computer and use it in GitHub Desktop.
Save RowanFeely/5fe5d96f38a78a538562e3d8876a2ff1 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync
{
// Editor UI
"customizeUI.fontSizeMap": {
"13px": "12px",
"12px": "12px",
"window-title": "11px", // Window title font when using custom titlebar
"tab-title": "12px", // Used for editor tab titles
"monospace": "10px" // Used for monospace fonts in user interface
},
"customizeUI.stylesheet": {
".search-view .search-widgets-container": "padding-top: 0px !important",
".suggest-input-container": "padding: 3px 4px 3px !important;"
},
"customizeUI.font.regular": "IBM Plex Sans",
"customizeUI.font.monospace": "IBM Plex mono",
"customizeUI.listRowHeight": 19,
// shrink rows to match XCode
"shellcheck.run": "onSave",
"workbench.activityBar.visible": false,
"editor.fontSize": 14,
"editor.smoothScrolling": true,
"editor.cursorBlinking": "phase",
"editor.scrollBeyondLastLine": false,
"editor.colorDecorators": true,
// "editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.emptySelectionClipboard": false,
"editor.formatOnPaste": true,
"diffEditor.renderSideBySide": false,
"editor.formatOnSave": true,
"editor.lightbulb.enabled": false,
"editor.renderWhitespace": "none",
"editor.roundedSelection": true,
"explorer.autoReveal": false,
"explorer.incrementalNaming": "smart",
"explorer.openEditors.visible": 0,
"extensions.autoUpdate": false,
"extensions.closeExtensionDetailsOnViewChange": true,
"extensions.ignoreRecommendations": true,
"extensions.showRecommendationsOnlyOnDemand": true,
"material-icon-theme.activeIconPack": "react",
"material-icon-theme.folders.color": "#616e88",
"material-icon-theme.folders.theme": "classic",
"material-icon-theme.hidesExplorerArrows": true,
"material-icon-theme.saturation": 0.6,
"diffEditor.ignoreTrimWhitespace": true,
"diffEditor.renderIndicators": true,
"editor.minimap.maxColumn": 80,
"problems.showCurrentInStatus": true,
"minimap.errorHighlight": "#BF616A",
"minimap.warningHighlight": "#EBCB8B",
"editor.minimap.scale": 1,
"editor.detectIndentation": true,
"editor.fastScrollSensitivity": 5,
"editor.renderIndentGuides": true,
"editor.wrappingIndent": "indent",
"workbench.editor.restoreViewState": true,
"editor.wordWrapColumn": 88,
"vsintellicode.python.completionsEnabled": true,
"editor.highlightActiveIndentGuide": true,
"editor.autoIndent": "advanced",
"scm.diffDecorations": "gutter",
"smoothtype.autoReload": false,
// "editor.scrollbar.horizontal": "hidden",
// "editor.scrollbar.vertical": "hidden",
"prettier.singleQuote": true,
// Terminal
"terminal.integrated.fontFamily": "PragmataPro Liga",
"terminal.integrated.cwd": "${fileDirname}",
"editor.fontLigatures": true,
"editor.tabSize": 2,
"workbench.fontAliasing": "antialiased",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Nord",
"workbench.iconTheme": "material-icon-theme",
"search.collapseResults": "alwaysCollapse",
"telemetry.enableTelemetry": false,
"workbench.commandPalette.preserveInput": true,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.focusRecentEditorAfterClose": false,
"workbench.enableExperiments": false,
"workbench.quickOpen.preserveInput": true,
"workbench.settings.enableNaturalLanguageSearch": false,
"workbench.sideBar.location": "right",
// "errorLens.errorBackground": "#BF616A",
// "errorLens.errorMessageBackground": "#BF616A",
// "errorLens.errorForeground": "#2E3440",
// "errorLens.warningBackground": "#EBCB8B",
// "errorLens.warningMessageBackground": "#EBCB8B",
// "errorLens.warningForeground": "#2E3440",
// "errorLens.infoBackground": "#8FBCBB",
// "errorLens.infoMessageBackground": "#8FBCBB",
// "errorLens.infoForeground": "#2E3440",
// "errorLens.hintBackground": "#4C566A",
// "errorLens.hintMessageBackground": "#4C566A",
// "errorLens.hintForeground": "#2E3440",
"editor.formatOnType": true,
"files.autoSaveDelay": 1000,
"files.trimFinalNewlines": true,
"liveServer.settings.donotShowInfoMsg": true,
"gitlens.heatmap.coldColor": "#80A0C2",
"gitlens.heatmap.hotColor": "#D2876D",
"python.linting.maxNumberOfProblems": 50,
"python.jediEnabled": false,
"python.formatting.provider": "black",
"python.linting.enabled": true,
// "python.linting.pycodestyleEnabled": true,
"python.linting.pylintEnabled": true,
"python.linting.lintOnSave": true,
"python.autoComplete.addBrackets": true,
"terminal.integrated.drawBoldTextInBrightColors": false,
"eslint.autoFixOnSave": true,
"workbench.editor.highlightModifiedTabs": true,
"files.autoSave": "afterDelay",
"sync.gist": "64e0b87017c310c4f1737e2a37d5ed6c",
"editor.minimap.renderCharacters": false,
"explorer.confirmDelete": false,
"python.dataScience.askForKernelRestart": false,
"path-intellisense.autoSlashAfterDirectory": true,
// Hide dotfiles from glob
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.github": true,
"**/.vscode": true
},
// Exclude file paths from file watching
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true
},
// Override certain elements of Nord
"editor.tokenColorCustomizations": {
"[Nord]": {
"textMateRules": []
},
"workbench.colorCustomizations": {
"[Nord]": {}
},
"gitlens.statusBar.reduceFlicker": true,
"gitlens.views.compare.avatars": false,
"gitlens.views.search.avatars": false,
"gitlens.blame.avatars": false,
"gitlens.hovers.avatars": false,
"gitlens.views.fileHistory.avatars": false,
"gitlens.views.lineHistory.avatars": false,
"gitlens.views.repositories.avatars": false,
"gitlens.hovers.detailsMarkdownFormat": " __${author}__, ${ago}   _(${date})_ ${message}${commands}"
},
// Controls if quick suggestions should show up while typing
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
// Controls if suggestions should be accepted on 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. The value 'smart' means only accept a suggestion with Enter when it makes a textual change
"editor.acceptSuggestionOnEnter": "smart",
// Controls the delay in ms after which quick suggestions will show up.
"editor.quickSuggestionsDelay": 10,
// Controls if suggestions should automatically show up when typing trigger characters
"editor.suggestOnTriggerCharacters": true,
// Controls if pressing tab inserts the best suggestion and if tab cycles through other suggestions
"editor.tabCompletion": "on",
// Controls whether sorting favours words that appear close to the cursor
"editor.suggest.localityBonus": true,
// Controls how suggestions are pre-selected when showing the suggest list
"editor.suggestSelection": "first",
// Enable word based suggestions
"editor.wordBasedSuggestions": true,
// Enable parameter hints
"editor.parameterHints.enabled": true,
"workbench.editor.closeOnFileDelete": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// Global VS Code Settings appear here
"[markdown]": {
"editor.fontFamily": "IBM Plex Sans",
"editor.fontLigatures": false,
"editor.fontSize": 14,
"editor.lineHeight": 23,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 72,
"editor.lineNumbers": "off",
"editor.quickSuggestions": false
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"debug.console.fontFamily": "PragmataPro Mono Liga",
"html.format.wrapAttributes": "force-expand-multiline",
"html.format.wrapLineLength": 78,
"editor.autoClosingQuotes": "beforeWhitespace",
"editor.minimap.enabled": true,
"sync.autoUpload": true,
"customizeUI.titleBar": "inline",
"window.titleBarStyle": "native",
"workbench.useExperimentalGridLayout": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"gitlens.advanced.messages": {
"suppressFileNotUnderSourceControlWarning": true
},
"terminal.integrated.shell.osx": "/usr/local/bin/fish",
"git.confirmSync": false,
"better-comments.tags": [
{
"tag": "!",
"color": "#bf616a",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "?",
"color": "#5e81ac",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "//",
"color": "#4c566a",
"strikethrough": true,
"backgroundColor": "transparent"
},
{
"tag": "todo",
"color": "#d08770",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "*",
"color": "#a3be8c",
"strikethrough": false,
"backgroundColor": "transparent"
}
],
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"python.linting.pylamaEnabled": false,
"python.linting.flake8Enabled": false,
"terminal.integrated.fontSize": 13.5,
"workbench.view.alwaysShowHeaderActions": false,
"debug.console.fontSize": 11,
"editor.renderFinalNewline": false,
"editor.renderLineHighlight": "all",
"scm.alwaysShowActions": false,
"update.mode": "start",
"terminal.external.linuxExec": "xterm-256",
"terminal.integrated.scrollback": 200,
"telemetry.enableCrashReporter": false,
"terminal.integrated.experimentalUseTitleEvent": true,
"terminal.integrated.inheritEnv": false,
"terminal.integrated.letterSpacing": 2,
"editor.cursorSmoothCaretAnimation": true,
"editor.cursorStyle": "underline",
"terminal.integrated.lineHeight": 0,
"eslint.run": "onSave",
"vsintellicode.modify.editor.suggestSelection": "choseToUpdateConfiguration",
"editor.wordWrap": "bounded",
"errorLens.errorBackground": "#BE626B",
"errorLens.errorForeground": "#D8DEE9",
"editor.renderControlCharacters": true,
"editor.fontFamily": "PragmataPro Liga",
"markdown.preview.lineHeight": 1.62,
// "editor.letterSpacing": 0,
"editor.matchBrackets": false,
"editor.hideCursorInOverviewRuler": true,
"window.closeWhenEmpty": true,
"window.openFilesInNewWindow": "on",
"git-graph.fetchAndPrune": true,
"git-graph.graphColours": [
"#5d80ae",
"#c16069",
"#d2876d",
"#eccc87",
"#a2bf8a",
"#b58dae"
],
"git-graph.graphStyle": "angular",
"gitlens.blame.avatars": false,
"gitlens.hovers.avatars": false,
"gitlens.views.compare.avatars": false,
"gitlens.views.fileHistory.avatars": false,
"gitlens.views.search.avatars": false,
"gitlens.views.lineHistory.avatars": false,
"gitlens.views.repositories.avatars": false,
"markdownShortcuts.icons.bold": false,
"breadcrumbs.enabled": true,
"workbench.statusBar.visible": true,
"seito-openfile.openNewTab": true,
"workbench.panel.defaultLocation": "right",
"terminal.explorerKind": "external",
"search.actionsPosition": "right",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
{"lastUpload":"2020-05-03T18:27:30.449Z","extensionVersion":"v3.4.3"}
[
{
"metadata": {
"id": "70378119-1d85-4935-9733-0298c7a369a2",
"publisherId": "steoates.autoimport",
"publisherDisplayName": "steoates"
},
"name": "autoimport",
"publisher": "steoates",
"version": "1.5.3"
},
{
"metadata": {
"id": "8bd90cfe-8edd-4b92-b992-2337fdc06604",
"publisherId": "wwm.better-align",
"publisherDisplayName": "wwm"
},
"name": "better-align",
"publisher": "wwm",
"version": "1.1.6"
},
{
"metadata": {
"id": "7a0110bb-231a-4598-aa1b-0769ea46d28b",
"publisherId": "aaron-bond.better-comments",
"publisherDisplayName": "aaron-bond"
},
"name": "better-comments",
"publisher": "aaron-bond",
"version": "2.0.5"
},
{
"metadata": {
"id": "e040918e-a5fa-407c-b0af-607287357259",
"publisherId": "Sujan.code-blue",
"publisherDisplayName": "Sujan"
},
"name": "code-blue",
"publisher": "Sujan",
"version": "0.9.12"
},
{
"metadata": {
"id": "a6a0c5b2-d078-4bf5-a9ee-4e37054414b3",
"publisherId": "formulahendry.code-runner",
"publisherDisplayName": "formulahendry"
},
"name": "code-runner",
"publisher": "formulahendry",
"version": "0.9.17"
},
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "Shan.code-settings-sync",
"publisherDisplayName": "Shan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "3.4.3"
},
{
"metadata": {
"id": "121396ad-85a1-45ec-9fd1-d95028a847f5",
"publisherId": "naumovs.color-highlight",
"publisherDisplayName": "naumovs"
},
"name": "color-highlight",
"publisher": "naumovs",
"version": "2.3.0"
},
{
"metadata": {
"id": "ac44dd75-bdb7-433b-9d86-23f9f070c07a",
"publisherId": "iocave.customize-ui",
"publisherDisplayName": "iocave"
},
"name": "customize-ui",
"publisher": "iocave",
"version": "0.1.34"
},
{
"metadata": {
"id": "1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd",
"publisherId": "msjsdiag.debugger-for-chrome",
"publisherDisplayName": "msjsdiag"
},
"name": "debugger-for-chrome",
"publisher": "msjsdiag",
"version": "4.12.6"
},
{
"metadata": {
"id": "19804510-b475-4dae-b0f7-6ca08fd1af0c",
"publisherId": "dsznajder.es7-react-js-snippets",
"publisherDisplayName": "dsznajder"
},
"name": "es7-react-js-snippets",
"publisher": "dsznajder",
"version": "2.7.1"
},
{
"metadata": {
"id": "438221f8-1107-4ccd-a6fe-f3b7fe0856b7",
"publisherId": "mhutchie.git-graph",
"publisherDisplayName": "mhutchie"
},
"name": "git-graph",
"publisher": "mhutchie",
"version": "1.22.0"
},
{
"metadata": {
"id": "4de763bd-505d-4978-9575-2b7696ecf94e",
"publisherId": "eamodio.gitlens",
"publisherDisplayName": "eamodio"
},
"name": "gitlens",
"publisher": "eamodio",
"version": "10.2.1"
},
{
"metadata": {
"id": "c6d564c4-ca8c-45ba-abf6-c85f2d1468d8",
"publisherId": "jdinhlife.gruvbox",
"publisherDisplayName": "jdinhlife"
},
"name": "gruvbox",
"publisher": "jdinhlife",
"version": "1.4.0"
},
{
"metadata": {
"id": "961c6678-1125-43a1-8482-df5a0766d313",
"publisherId": "tomphilbin.gruvbox-themes",
"publisherDisplayName": "tomphilbin"
},
"name": "gruvbox-themes",
"publisher": "tomphilbin",
"version": "1.0.0"
},
{
"metadata": {
"id": "fcf0848c-96b3-487a-a655-01aed955a594",
"publisherId": "jolaleye.horizon-theme-vscode",
"publisherDisplayName": "jolaleye"
},
"name": "horizon-theme-vscode",
"publisher": "jolaleye",
"version": "2.0.2"
},
{
"metadata": {
"id": "6edd1f7d-7d66-42ee-a32f-62c990bcfa19",
"publisherId": "torn4dom4n.latex-support",
"publisherDisplayName": "torn4dom4n"
},
"name": "latex-support",
"publisher": "torn4dom4n",
"version": "3.2.0"
},
{
"metadata": {
"id": "1f62b5eb-c368-40ac-a1d7-f302513b13c3",
"publisherId": "mariosangiorgio.ledger",
"publisherDisplayName": "mariosangiorgio"
},
"name": "ledger",
"publisher": "mariosangiorgio",
"version": "1.0.9"
},
{
"metadata": {
"id": "b63c44fd-0457-4696-99e9-dbfdf70d77de",
"publisherId": "ritwickdey.LiveServer",
"publisherDisplayName": "ritwickdey"
},
"name": "LiveServer",
"publisher": "ritwickdey",
"version": "5.6.1"
},
{
"metadata": {
"id": "f3da5699-8a4b-4b2e-b4d8-8f5c8cd67c09",
"publisherId": "LuisGalicia.mariana-nord",
"publisherDisplayName": "LuisGalicia"
},
"name": "mariana-nord",
"publisher": "LuisGalicia",
"version": "0.0.1"
},
{
"metadata": {
"id": "a4f91432-1b7d-4acd-b906-76d8ac8ad7e7",
"publisherId": "mdickin.markdown-shortcuts",
"publisherDisplayName": "mdickin"
},
"name": "markdown-shortcuts",
"publisher": "mdickin",
"version": "0.12.0"
},
{
"metadata": {
"id": "5db78037-f674-459f-a236-db622c427c5b",
"publisherId": "PKief.material-icon-theme",
"publisherDisplayName": "PKief"
},
"name": "material-icon-theme",
"publisher": "PKief",
"version": "4.0.1"
},
{
"metadata": {
"id": "736c2316-7f4f-4b6a-8e5c-70527d82cf51",
"publisherId": "iocave.monkey-patch",
"publisherDisplayName": "iocave"
},
"name": "monkey-patch",
"publisher": "iocave",
"version": "0.1.7"
},
{
"metadata": {
"id": "6f35c257-7fd5-4bc2-9cd1-01976589c17a",
"publisherId": "arcticicestudio.nord-visual-studio-code",
"publisherDisplayName": "arcticicestudio"
},
"name": "nord-visual-studio-code",
"publisher": "arcticicestudio",
"version": "0.13.0"
},
{
"metadata": {
"id": "113b22c8-8125-42ec-8c6b-80c3f5d5fa5f",
"publisherId": "IBM.output-colorizer",
"publisherDisplayName": "IBM"
},
"name": "output-colorizer",
"publisher": "IBM",
"version": "0.1.2"
},
{
"metadata": {
"id": "79afa437-682e-4fa2-a4fd-87844832a1dc",
"publisherId": "ryu1kn.partial-diff",
"publisherDisplayName": "ryu1kn"
},
"name": "partial-diff",
"publisher": "ryu1kn",
"version": "1.4.1"
},
{
"metadata": {
"id": "0d1241e3-fa60-4f24-8f2a-6d7085677c48",
"publisherId": "ionutvmi.path-autocomplete",
"publisherDisplayName": "ionutvmi"
},
"name": "path-autocomplete",
"publisher": "ionutvmi",
"version": "1.13.6"
},
{
"metadata": {
"id": "a41c1549-4053-44d4-bf30-60fc809b4a86",
"publisherId": "christian-kohler.path-intellisense",
"publisherDisplayName": "christian-kohler"
},
"name": "path-intellisense",
"publisher": "christian-kohler",
"version": "1.4.2"
},
{
"metadata": {
"id": "d80b9a94-f4a6-4e39-bc42-62212e365682",
"publisherId": "pnp.polacode",
"publisherDisplayName": "pnp"
},
"name": "polacode",
"publisher": "pnp",
"version": "0.3.4"
},
{
"metadata": {
"id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90",
"publisherId": "esbenp.prettier-vscode",
"publisherDisplayName": "esbenp"
},
"name": "prettier-vscode",
"publisher": "esbenp",
"version": "4.2.0"
},
{
"metadata": {
"id": "1b747f06-3789-4ebd-ac99-f1fe430c3347",
"publisherId": "alefragnani.project-manager",
"publisherDisplayName": "alefragnani"
},
"name": "project-manager",
"publisher": "alefragnani",
"version": "10.11.0"
},
{
"metadata": {
"id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5",
"publisherId": "ms-python.python",
"publisherDisplayName": "ms-python"
},
"name": "python",
"publisher": "ms-python",
"version": "2020.3.71659"
},
{
"metadata": {
"id": "e05d98bf-3735-4c1e-9fae-86ef0a52e19f",
"publisherId": "quicktype.quicktype",
"publisherDisplayName": "quicktype"
},
"name": "quicktype",
"publisher": "quicktype",
"version": "12.0.46"
},
{
"metadata": {
"id": "7ed7bccd-f358-4c6f-88c0-1296185abaa1",
"publisherId": "chrmarti.regex",
"publisherDisplayName": "chrmarti"
},
"name": "regex",
"publisher": "chrmarti",
"version": "0.2.0"
},
{
"metadata": {
"id": "607fd052-be03-4363-b657-2bd62b83d28a",
"publisherId": "ms-vscode-remote.remote-ssh",
"publisherDisplayName": "ms-vscode-remote"
},
"name": "remote-ssh",
"publisher": "ms-vscode-remote",
"version": "0.51.0"
},
{
"metadata": {
"id": "bfeaf631-bcff-4908-93ed-fda4ef9a0c5c",
"publisherId": "ms-vscode-remote.remote-ssh-edit",
"publisherDisplayName": "ms-vscode-remote"
},
"name": "remote-ssh-edit",
"publisher": "ms-vscode-remote",
"version": "0.51.0"
},
{
"metadata": {
"id": "dda49fd5-1f3b-4d25-bf61-4fc41905ede5",
"publisherId": "humao.rest-client",
"publisherDisplayName": "humao"
},
"name": "rest-client",
"publisher": "humao",
"version": "0.23.2"
},
{
"metadata": {
"id": "531cc46e-a673-425f-9f5a-60ce75187e35",
"publisherId": "Fr43nk.seito-openfile",
"publisherDisplayName": "Fr43nk"
},
"name": "seito-openfile",
"publisher": "Fr43nk",
"version": "1.8.5"
},
{
"metadata": {
"id": "f95d8fff-f70a-4ae5-bb06-5c47ddbc8fc6",
"publisherId": "timonwong.shellcheck",
"publisherDisplayName": "timonwong"
},
"name": "shellcheck",
"publisher": "timonwong",
"version": "0.9.0"
},
{
"metadata": {
"id": "00518570-772b-4ccb-8b06-d056f3f556e0",
"publisherId": "Tyriar.sort-lines",
"publisherDisplayName": "Tyriar"
},
"name": "sort-lines",
"publisher": "Tyriar",
"version": "1.9.0"
},
{
"metadata": {
"id": "b6cf4a6d-cb11-42fa-9487-d8fa70837b0e",
"publisherId": "bpruitt-goddard.sourcerer",
"publisherDisplayName": "bpruitt-goddard"
},
"name": "sourcerer",
"publisher": "bpruitt-goddard",
"version": "1.0.5"
},
{
"metadata": {
"id": "d477f472-4e0f-4b5c-bb35-b7c157fa4eb8",
"publisherId": "rafamel.subtle-brackets",
"publisherDisplayName": "rafamel"
},
"name": "subtle-brackets",
"publisher": "rafamel",
"version": "3.0.0"
},
{
"metadata": {
"id": "34647879-c168-49c3-8cb4-f7705064ca32",
"publisherId": "ms-vscode.Theme-PredawnKit",
"publisherDisplayName": "ms-vscode"
},
"name": "Theme-PredawnKit",
"publisher": "ms-vscode",
"version": "0.1.4"
},
{
"metadata": {
"id": "8db53f8f-d07e-4d9b-a92c-74a51e5930c2",
"publisherId": "malmaud.tmux",
"publisherDisplayName": "malmaud"
},
"name": "tmux",
"publisher": "malmaud",
"version": "0.1.0"
},
{
"metadata": {
"id": "a353cb99-4a98-43ee-b644-e537b89fc3ae",
"publisherId": "fallenwood.vimL",
"publisherDisplayName": "fallenwood"
},
"name": "vimL",
"publisher": "fallenwood",
"version": "0.0.3"
},
{
"metadata": {
"id": "0d0eba31-9abb-4efd-859d-98915f8b4e75",
"publisherId": "rphlmr.visual-gruvbox-medium-dark",
"publisherDisplayName": "rphlmr"
},
"name": "visual-gruvbox-medium-dark",
"publisher": "rphlmr",
"version": "1.1.1"
},
{
"metadata": {
"id": "126e4983-78cb-433f-a67c-9b07c39c7802",
"publisherId": "auchenberg.vscode-browser-preview",
"publisherDisplayName": "auchenberg"
},
"name": "vscode-browser-preview",
"publisher": "auchenberg",
"version": "0.6.6"
},
{
"metadata": {
"id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a",
"publisherId": "dbaeumer.vscode-eslint",
"publisherDisplayName": "dbaeumer"
},
"name": "vscode-eslint",
"publisher": "dbaeumer",
"version": "2.1.2"
},
{
"metadata": {
"id": "efa79b03-91c5-4c6a-9846-0a7b6f7af05e",
"publisherId": "bmalehorn.vscode-fish",
"publisherDisplayName": "bmalehorn"
},
"name": "vscode-fish",
"publisher": "bmalehorn",
"version": "1.0.12"
},
{
"metadata": {
"id": "dd5a2c83-ad8c-4839-a529-0644e5acb646",
"publisherId": "mgmcdermott.vscode-language-babel",
"publisherDisplayName": "mgmcdermott"
},
"name": "vscode-language-babel",
"publisher": "mgmcdermott",
"version": "0.0.27"
},
{
"metadata": {
"id": "687728d4-a337-4ea9-8a33-2297b2ce1391",
"publisherId": "spikespaz.vscode-smoothtype",
"publisherDisplayName": "spikespaz"
},
"name": "vscode-smoothtype",
"publisher": "spikespaz",
"version": "1.2.0"
},
{
"metadata": {
"id": "06cc3e44-aedb-41b8-a4ea-29ebf3c491fd",
"publisherId": "jpoissonnier.vscode-styled-components",
"publisherDisplayName": "jpoissonnier"
},
"name": "vscode-styled-components",
"publisher": "jpoissonnier",
"version": "0.0.29"
},
{
"metadata": {
"id": "07fc4a0a-11fc-4121-ba9a-f0d534c729d8",
"publisherId": "pflannery.vscode-versionlens",
"publisherDisplayName": "pflannery"
},
"name": "vscode-versionlens",
"publisher": "pflannery",
"version": "0.25.0"
},
{
"metadata": {
"id": "876e8f93-74d0-4f4f-91b7-34a09f19f444",
"publisherId": "VisualStudioExptTeam.vscodeintellicode",
"publisherDisplayName": "VisualStudioExptTeam"
},
"name": "vscodeintellicode",
"publisher": "VisualStudioExptTeam",
"version": "1.2.6"
}
]
/*
* Copyright (C) 2016-present Arctic Ice Studio <[email protected]>
* Copyright (C) 2016-present Sven Greb <[email protected]>
*
* Project: igloo
* Repository: https://github.com/arcticicestudio/igloo
* License: MIT
*/
{
/*+--- Core ---+*/
"breadcrumbs.enabled": false,
"editor.accessibilitySupport": "off",
"editor.codeLens": true,
"editor.colorDecorators": true,
"editor.cursorBlinking": "phase",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.emptySelectionClipboard": false,
"editor.fontFamily": "'pragmatapro mono liga', 'Source Code Pro', 'Hack'",
"editor.fontSize": 20,
"editor.fontWeight": "200",
"editor.formatOnSave": true,
"editor.lightbulb.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderIndentGuides": false,
"editor.renderWhitespace": "selection",
"editor.smoothScrolling": true,
"editor.snippetSuggestions": "top",
"editor.tabCompletion": "onlySnippets",
"editor.tabSize": 2,
"editor.wordWrapColumn": 120,
"explorer.autoReveal": false,
"explorer.incrementalNaming": "smart",
"explorer.openEditors.visible": 0,
"extensions.autoUpdate": false,
"extensions.closeExtensionDetailsOnViewChange": true,
"extensions.ignoreRecommendations": true,
"extensions.showRecommendationsOnlyOnDemand": true,
"files.associations": {
"*.js": "javascript",
"*.jsx": "javascriptreact",
"Brewfile": "ruby",
"vimrc": "viml"
},
"files.eol": "\n",
"files.insertFinalNewline": true,
"npm.enableScriptExplorer": false,
"problems.autoReveal": false,
"search.collapseResults": "alwaysCollapse",
"search.useGlobalIgnoreFiles": true,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"terminal.explorerKind": "external",
"terminal.external.linuxExec": "tilix",
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontSize": 20,
"update.channel": "none",
"update.mode": "none",
"update.enableWindowsBackgroundUpdates": false,
"window.enableMenuBarMnemonics": false,
"window.menuBarVisibility": "hidden",
"window.titleBarStyle": "native",
"window.zoomLevel": -2.2,
"workbench.activityBar.visible": false,
"workbench.colorTheme": "Nord",
"workbench.commandPalette.preserveInput": true,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.focusRecentEditorAfterClose": false,
"workbench.enableExperiments": false,
"workbench.iconTheme": "material-icon-theme",
"workbench.quickOpen.preserveInput": true,
"workbench.settings.enableNaturalLanguageSearch": false,
"workbench.sideBar.location": "left",
"workbench.startupEditor": "newUntitledFile",
"workbench.statusBar.feedback.visible": false,
"workbench.tree.renderIndentGuides": "none",
/*+--- Extensions ---+*/
"cSpell.dictionaries": [
"apps-en-iceowl",
"apps-en-igloo",
"code-en-iceowl",
"code-en-igloo",
"general-en-iceowl",
"general-en-igloo",
"identities-iceowl",
"identities-igloo",
"projects-iceowl",
"projects-igloo"
],
"cSpell.dictionaryDefinitions": [
{
"name": "apps-en-iceowl",
"path": "/Users/sgreb/.vscode/dictionaries/apps-en.txt"
},
{
"name": "apps-en-igloo",
"path": "/home/arcticicestudio/.vscode/dictionaries/apps-en.txt"
},
{
"name": "code-en-iceowl",
"path": "/Users/sgreb/.vscode/dictionaries/code-en.txt"
},
{
"name": "code-en-igloo",
"path": "/home/arcticicestudio/.vscode/dictionaries/code-en.txt"
},
{
"name": "general-en-iceowl",
"path": "/Users/sgreb/.vscode/dictionaries/general-en.txt"
},
{
"name": "general-en-igloo",
"path": "/home/arcticicestudio/.vscode/dictionaries/general-en.txt"
},
{
"name": "identities-iceowl",
"path": "/Users/sgreb/.vscode/dictionaries/identities.txt"
},
{
"name": "identities-igloo",
"path": "/home/arcticicestudio/.vscode/dictionaries/identities.txt"
},
{
"name": "projects-iceowl",
"path": "/Users/sgreb/.vscode/dictionaries/projects.txt"
},
{
"name": "projects-igloo",
"path": "/home/arcticicestudio/.vscode/dictionaries/projects.txt"
}
],
"cSpell.enabledLanguageIds": [
"asciidoc",
"c",
"cpp",
"csharp",
"css",
"go",
"handlebars",
"html",
"jade",
"javascript",
"javascriptreact",
"json",
"latex",
"less",
"markdown",
"mdx",
"php",
"plaintext",
"pub",
"python",
"restructuredtext",
"rust",
"scss",
"text",
"typescript",
"typescriptreact",
"yml"
],
"cSpell.language": "en,en-US",
"cSpell.showStatus": false,
"eslint.autoFixOnSave": true,
"docker.showExplorer": false,
"go.autocompleteUnimportedPackages": true,
"go.coverageDecorator": {
"type": "highlight",
"coveredHighlightColor": "rgba(163, 190, 140, 0.45)",
"uncoveredHighlightColor": "rgba(191, 97, 106, 0.25)",
"coveredGutterStyle": "verticalgreen",
"uncoveredGutterStyle": "verticalred"
},
"html.format.indentInnerHtml": true,
"javascript.preferences.quoteStyle": "double",
"markdown-preview-enhanced.enableExtendedTableSyntax": true,
"markdown-preview-enhanced.scrollSync": true,
"markdown.preview.breaks": true,
"markdown.preview.doubleClickToSwitchToEditor": false,
"markdown.preview.fontFamily": "-apple-system, BlinkMacSystemFont, Inter, sans-serif",
"markdown.preview.fontSize": 20,
"path-intellisense.showHiddenFiles": true,
"prettier.printWidth": 120,
"projects.checkPaths": true,
"projects.configPath": "~/.vscode/projects.json",
"projects.indentationSpaces": 2,
"projects.refreshDepth": 4,
"projects.refreshRoots": ["~/code/incubator", "~/code/job", "~/code/lab", "~/code/snippetbox", "~/yggdrasil"],
"projects.showDescriptions": false,
"projects.statusbarEnabled": false,
"rust-client.disableRustup": true,
"typescript.preferences.quoteStyle": "double",
"vscode_custom_css.imports": [
"file:///home/arcticicestudio/.vscode/css/remove-action-button.css",
"file:///Users/sgreb/.vscode/css/remove-action-button.css"
],
"vscode_custom_css.statusbar": false,
"yaml.format.enable": true,
/*+--- Color Theme ---+*/
"editor.tokenColorCustomizations": {
"[Nord]": {
"textMateRules": []
}
},
"material-icon-theme.activeIconPack": "react",
"material-icon-theme.folders.color": "#616e88",
"material-icon-theme.folders.theme": "classic",
"material-icon-theme.hidesExplorerArrows": true,
"material-icon-theme.saturation": 0.6,
"workbench.colorCustomizations": {
"[Nord]": {}
},
/*+--- Language Scopes ---+*/
"[markdown]": {
"editor.quickSuggestions": false,
"editor.wordWrap": "on"
},
"[mdx]": {
"editor.quickSuggestions": false,
"editor.wordWrap": "on"
}
}
{
// Editor UI
"customizeUI.fontSizeMap": {
"13px": "11px",
"12px": "11px",
"window-title": "10px", // Window title font when using custom titlebar
"tab-title": "11px", // Used for editor tab titles
"monospace": "9px" // Used for monospace fonts in user interface
},
"customizeUI.stylesheet": {
".search-view .search-widgets-container": "padding-top: 0px !important",
".suggest-input-container": "padding: 3px 4px 3px !important;"
},
"customizeUI.font.regular": "Input Sans Condensed",
"customizeUI.font.monospace": "Input Mono Condensed",
"customizeUI.listRowHeight": 19,
// shrink rows to match XCode
"shellcheck.run": "onSave",
"workbench.activityBar.visible": false,
"editor.fontSize": 14.5,
"editor.smoothScrolling": true,
"editor.cursorBlinking": "phase",
"editor.scrollBeyondLastLine": false,
"editor.colorDecorators": true,
// "editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.emptySelectionClipboard": false,
"editor.formatOnPaste": true,
"diffEditor.renderSideBySide": false,
"editor.formatOnSave": true,
"editor.lightbulb.enabled": false,
"editor.renderWhitespace": "selection",
"editor.roundedSelection": true,
"explorer.autoReveal": false,
"explorer.incrementalNaming": "smart",
"explorer.openEditors.visible": 0,
"extensions.autoUpdate": false,
"extensions.closeExtensionDetailsOnViewChange": true,
"extensions.ignoreRecommendations": true,
"extensions.showRecommendationsOnlyOnDemand": true,
"material-icon-theme.activeIconPack": "react",
"material-icon-theme.folders.color": "#616e88",
"material-icon-theme.folders.theme": "classic",
"material-icon-theme.hidesExplorerArrows": true,
"material-icon-theme.saturation": 0.6,
"diffEditor.ignoreTrimWhitespace": true,
"diffEditor.renderIndicators": true,
"editor.minimap.maxColumn": 80,
"problems.showCurrentInStatus": true,
"minimap.selectionHighlight": "#8FBCBB",
"editor.detectIndentation": true,
"editor.fastScrollSensitivity": 8,
"editor.renderIndentGuides": true,
"editor.wrappingIndent": "same",
"workbench.editor.restoreViewState": true,
"vsintellicode.python.completionsEnabled": true,
"editor.highlightActiveIndentGuide": true,
"editor.autoIndent": "advanced",
"scm.diffDecorations": "gutter",
"smoothtype.autoReload": true,
// "editor.scrollbar.horizontal": "hidden",
// "editor.scrollbar.vertical": "hidden",
"prettier.singleQuote": true,
// Terminal
"terminal.integrated.fontFamily": "PragmataPro Liga",
"terminal.integrated.cwd": "${fileDirname}",
"editor.fontLigatures": true,
"editor.tabSize": 4,
"workbench.fontAliasing": "antialiased",
"workbench.startupEditor": "none",
"workbench.colorTheme": "Nord",
"workbench.iconTheme": "material-icon-theme",
"search.collapseResults": "alwaysCollapse",
"telemetry.enableTelemetry": false,
"workbench.commandPalette.preserveInput": true,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.focusRecentEditorAfterClose": false,
"workbench.enableExperiments": false,
"workbench.quickOpen.preserveInput": true,
"workbench.settings.enableNaturalLanguageSearch": false,
"workbench.sideBar.location": "right",
// "errorLens.errorBackground": "#BF616A",
// "errorLens.errorMessageBackground": "#BF616A",
// "errorLens.errorForeground": "#2E3440",
// "errorLens.warningBackground": "#EBCB8B",
// "errorLens.warningMessageBackground": "#EBCB8B",
// "errorLens.warningForeground": "#2E3440",
// "errorLens.infoBackground": "#8FBCBB",
// "errorLens.infoMessageBackground": "#8FBCBB",
// "errorLens.infoForeground": "#2E3440",
// "errorLens.hintBackground": "#4C566A",
// "errorLens.hintMessageBackground": "#4C566A",
// "errorLens.hintForeground": "#2E3440",
"editor.formatOnType": true,
"files.autoSaveDelay": 1000,
"files.trimFinalNewlines": true,
"liveServer.settings.donotShowInfoMsg": true,
"gitlens.heatmap.coldColor": "#80A0C2",
"gitlens.heatmap.hotColor": "#D2876D",
"python.linting.maxNumberOfProblems": 50,
"python.jediEnabled": false,
"python.formatting.provider": "black",
"python.linting.enabled": true,
// "python.linting.pycodestyleEnabled": true,
"python.linting.pylintEnabled": true,
"python.linting.lintOnSave": true,
"python.autoComplete.addBrackets": true,
"terminal.integrated.drawBoldTextInBrightColors": false,
"workbench.editor.highlightModifiedTabs": true,
"files.autoSave": "afterDelay",
"sync.gist": "5fe5d96f38a78a538562e3d8876a2ff1",
"editor.minimap.renderCharacters": false,
"explorer.confirmDelete": false,
"python.dataScience.askForKernelRestart": false,
"path-intellisense.autoSlashAfterDirectory": true,
// Hide dotfiles from glob
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.github": true,
"**/.vscode": true
},
// Exclude file paths from file watching
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true
},
// Override certain elements of Nord
"editor.tokenColorCustomizations": {
"[Nord]": {
"textMateRules": []
},
"workbench.colorCustomizations": {
"[Nord]": {}
},
"gitlens.statusBar.reduceFlicker": true,
"gitlens.views.compare.avatars": false,
"gitlens.views.search.avatars": false,
"gitlens.blame.avatars": false,
"gitlens.hovers.avatars": false,
"gitlens.views.fileHistory.avatars": false,
"gitlens.views.lineHistory.avatars": false,
"gitlens.views.repositories.avatars": false,
"gitlens.hovers.detailsMarkdownFormat": "&nbsp;__${author}__, ${ago} &nbsp; _(${date})_ ${message}${commands}"
},
// Controls if quick suggestions should show up while typing
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
// Controls if suggestions should be accepted on 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. The value 'smart' means only accept a suggestion with Enter when it makes a textual change
"editor.acceptSuggestionOnEnter": "smart",
// Controls the delay in ms after which quick suggestions will show up.
"editor.quickSuggestionsDelay": 10,
// Controls if suggestions should automatically show up when typing trigger characters
"editor.suggestOnTriggerCharacters": true,
// Controls if pressing tab inserts the best suggestion and if tab cycles through other suggestions
"editor.tabCompletion": "on",
// Controls whether sorting favours words that appear close to the cursor
"editor.suggest.localityBonus": true,
// Controls how suggestions are pre-selected when showing the suggest list
"editor.suggestSelection": "first",
// Enable word based suggestions
"editor.wordBasedSuggestions": true,
// Enable parameter hints
"editor.parameterHints.enabled": true,
"workbench.editor.closeOnFileDelete": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// Global VS Code Settings appear here
"[markdown]": {
"editor.fontFamily": "IBM Plex Sans",
"editor.fontLigatures": false,
"editor.fontSize": 14,
"editor.lineHeight": 23,
"editor.wordWrap": "off",
"editor.wordWrapColumn": 72,
"editor.lineNumbers": "on",
"editor.quickSuggestions": false
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"debug.console.fontFamily": "PragmataPro Mono Liga",
"html.format.wrapAttributes": "aligned-multiple",
"html.format.wrapLineLength": 78,
"editor.autoClosingQuotes": "beforeWhitespace",
"editor.minimap.enabled": true,
"sync.autoUpload": false,
"customizeUI.titleBar": "inline",
"window.titleBarStyle": "native",
"workbench.useExperimentalGridLayout": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"gitlens.advanced.messages": {
"suppressFileNotUnderSourceControlWarning": true
},
"terminal.integrated.shell.osx": "/usr/local/bin/fish",
"git.confirmSync": false,
"better-comments.tags": [
{
"tag": "!",
"color": "#bf616a",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "?",
"color": "#5e81ac",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "//",
"color": "#4c566a",
"strikethrough": true,
"backgroundColor": "transparent"
},
{
"tag": "todo",
"color": "#d08770",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "*",
"color": "#a3be8c",
"strikethrough": false,
"backgroundColor": "transparent"
}
],
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"python.linting.pylamaEnabled": false,
"python.linting.flake8Enabled": false,
"terminal.integrated.fontSize": 13.5,
"workbench.view.alwaysShowHeaderActions": false,
"debug.console.fontSize": 11,
"editor.renderFinalNewline": false,
"editor.renderLineHighlight": "all",
"scm.alwaysShowActions": false,
"update.mode": "start",
"terminal.external.linuxExec": "xterm-256",
"terminal.integrated.scrollback": 200,
"telemetry.enableCrashReporter": false,
"terminal.integrated.experimentalUseTitleEvent": true,
"terminal.integrated.inheritEnv": false,
"terminal.integrated.letterSpacing": 2,
"editor.cursorSmoothCaretAnimation": true,
"editor.cursorStyle": "underline",
"terminal.integrated.lineHeight": 0,
"eslint.run": "onSave",
"vsintellicode.modify.editor.suggestSelection": "choseToUpdateConfiguration",
"errorLens.errorBackground": "#BE626B",
"errorLens.errorForeground": "#D8DEE9",
"editor.renderControlCharacters": false,
"editor.fontFamily": "pragmatapro liga",
"markdown.preview.lineHeight": 1.3,
// "editor.letterSpacing": 0,
"editor.matchBrackets": false,
"editor.hideCursorInOverviewRuler": true,
"window.closeWhenEmpty": true,
"window.openFilesInNewWindow": "on",
"git-graph.fetchAndPrune": true,
"git-graph.graphColours": [
"#5d80ae",
"#c16069",
"#d2876d",
"#eccc87",
"#a2bf8a",
"#b58dae"
],
"git-graph.graphStyle": "angular",
"gitlens.blame.avatars": false,
"gitlens.hovers.avatars": false,
"gitlens.views.compare.avatars": false,
"gitlens.views.fileHistory.avatars": false,
"gitlens.views.search.avatars": false,
"gitlens.views.lineHistory.avatars": false,
"gitlens.views.repositories.avatars": false,
"markdownShortcuts.icons.bold": false,
"breadcrumbs.enabled": true,
"workbench.statusBar.visible": true,
"seito-openfile.openNewTab": true,
"terminal.explorerKind": "external",
"search.actionsPosition": "right",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"window.zoomLevel": 0.2,
"terminal.integrated.fontWeightBold": "normal",
"editor.lineHeight": 20,
"editor.wrappingStrategy": "advanced",
"editor.wordWrapColumn": 78,
"editor.wordWrap": "on",
"sync.autoDownload": true,
"sync.forceUpload": false,
"sync.forceDownload": true,
"sync.syncExtensions": true,
"sync.removeExtensions": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment