this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add cSpell settings and update VSCode extensions

+50 -6
+4 -4
.config/vscode/extensions.txt
··· 1 1 13xforever.language-x86-64-assembly@2.3.0 2 2 asvetliakov.vscode-neovim@0.0.50 3 - atlassian.atlascode@2.6.4 3 + atlassian.atlascode@2.6.5 4 4 BazelBuild.vscode-bazel@0.3.0 5 5 bmalehorn.vscode-fish@1.0.16 6 6 bungcip.better-toml@0.3.2 ··· 12 12 eamodio.gitlens@10.2.2 13 13 fabiospampinato.vscode-statusbar-debugger@2.0.6 14 14 GitHub.vscode-pull-request-github@0.17.0 15 - golang.Go@0.14.4 15 + golang.go@0.15.0 16 16 ian-h-chamberlain.redcode@0.1.0 17 17 IBM.output-colorizer@0.1.2 18 18 jeff-hykin.better-cpp-syntax@1.14.31 ··· 24 24 matklad.rust-analyzer@0.2.224 25 25 ms-azuretools.vscode-docker@1.3.1 26 26 ms-pyright.pyright@1.1.47 27 - ms-python.python@2020.6.90262 27 + ms-python.python@2020.6.91350 28 28 ms-vscode-remote.remote-ssh@0.51.0 29 29 ms-vscode-remote.remote-ssh-edit@0.51.0 30 30 ms-vscode.cmake-tools@1.4.0 31 31 ms-vscode.cpptools@0.28.3 32 32 ms-vscode.vscode-typescript-tslint-plugin@1.2.3 33 - ms-vsliveshare.vsliveshare@1.0.2354 33 + ms-vsliveshare.vsliveshare@1.0.2377 34 34 redhat.vscode-xml@0.12.0 35 35 redhat.vscode-yaml@0.8.0 36 36 richie5um2.vscode-sort-json@1.18.0
+46 -2
Library/Application Support/Code/User/settings.json
··· 103 103 "cmake.cmakePath": "/usr/local/bin/cmake", 104 104 "cmake.configureOnOpen": false, 105 105 106 + "cSpell.allowCompoundWords": true, 107 + "cSpell.enableFiletypes": [ 108 + "cmake", 109 + "dockerfile", 110 + "fish", 111 + "gitignore", 112 + "graphql", 113 + "groovy", 114 + "ini", 115 + "jinja", 116 + "json5", 117 + "lua", 118 + "makefile", 119 + "mib", 120 + "objective-c", 121 + "objective-cpp", 122 + "org", 123 + "perl", 124 + "perl6", 125 + "plist", 126 + "properties", 127 + "proto3", 128 + "robot", 129 + "rpm-spec", 130 + "ruby", 131 + "shellscript", 132 + "sls", 133 + "ssh_config", 134 + "starlark", 135 + "toml", 136 + "viml", 137 + "xml", 138 + "yang" 139 + ], 106 140 "cSpell.userWords": [ 141 + "Bazel", 142 + "CCache", 143 + "CMake", 107 144 "CentOS", 108 145 "DUT", 146 + "DistCC", 147 + "RPM", 148 + "RPMs", 149 + "ianchamberlain", 150 + "ichamberlain", 151 + "makecache", 109 152 "mgmt", 110 153 "pref", 111 154 "prefs", 112 155 "repo", 113 156 "repos", 114 - "RPM", 157 + "resolv", 115 158 ], 116 159 117 160 "debug.internalConsoleOptions": "openOnSessionStart", ··· 301 344 "python.dataScience.enabled": false, 302 345 "python.formatting.provider": "black", 303 346 "python.linting.lintOnSave": true, 347 + "python.showStartPage": false, 304 348 "python.terminal.activateEnvironment": false, 305 349 "python.venvPath": "~/.pyenv", 306 350 ··· 478 522 "workbench.startupEditor": "newUntitledFile", 479 523 480 524 "yaml.schemas": { 481 - "file:///Users/ichamberlain/.vscode/extensions/atlassian.atlascode-2.6.4/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" 525 + "file:///Users/ichamberlain/.vscode/extensions/atlassian.atlascode-2.6.5/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" 482 526 }, 483 527 }