Skip to content

Instantly share code, notes, and snippets.

@msfjarvis
Last active December 14, 2021 11:39
Show Gist options
  • Save msfjarvis/39a882909ada98ae0e3c81a11de4a366 to your computer and use it in GitHub Desktop.
Save msfjarvis/39a882909ada98ae0e3c81a11de4a366 to your computer and use it in GitHub Desktop.
My VS Code settings
[
{
"id": "bierner.github-markdown-preview",
"name": "github-markdown-preview",
"publisher": "bierner",
"version": "0.0.2"
},
{
"id": "bierner.markdown-emoji",
"name": "markdown-emoji",
"publisher": "bierner",
"version": "0.0.9"
},
{
"id": "bierner.markdown-preview-github-styles",
"name": "markdown-preview-github-styles",
"publisher": "bierner",
"version": "0.1.6"
},
{
"id": "bierner.markdown-yaml-preamble",
"name": "markdown-yaml-preamble",
"publisher": "bierner",
"version": "0.0.4"
},
{
"id": "eamodio.gitlens",
"name": "gitlens",
"publisher": "eamodio",
"version": "11.0.6"
},
{
"id": "esbenp.prettier-vscode",
"name": "prettier-vscode",
"publisher": "esbenp",
"version": "5.8.0"
},
{
"id": "matklad.rust-analyzer",
"name": "rust-analyzer",
"publisher": "matklad",
"version": "0.2.424"
},
{
"id": "mtdmali.daybreak-theme",
"name": "daybreak-theme",
"publisher": "mtdmali",
"version": "1.2.0"
},
{
"id": "nonoroazoro.syncing",
"name": "syncing",
"publisher": "nonoroazoro",
"version": "3.1.0"
},
{
"id": "oderwat.indent-rainbow",
"name": "indent-rainbow",
"publisher": "oderwat",
"version": "7.4.0"
},
{
"id": "Perkovec.emoji",
"name": "emoji",
"publisher": "Perkovec",
"version": "0.0.3"
},
{
"id": "svsool.markdown-memo",
"name": "markdown-memo",
"publisher": "svsool",
"version": "0.3.2"
},
{
"id": "tchayen.markdown-links",
"name": "markdown-links",
"publisher": "tchayen",
"version": "0.8.0"
}
]
{
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true,
"venv": true
},
"editor.fontLigatures": true,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.suggestSelection": "first",
"editor.formatOnPaste": true,
"workbench.colorTheme": "Daybreak",
"explorer.confirmDelete": false,
"editor.fontWeight": "500",
"editor.renderWhitespace": "all",
"files.autoSave": "afterDelay",
"workbench.iconTheme": "Daybreak",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.fontSize": 15,
"window.zoomLevel": 0,
"nightswitch.themeDay": "GitHub Plus",
"nightswitch.themeNight": "Daybreak (Bold)",
"nightswitch.location": "",
"nightswitch.autoSwitch": false,
"rust-client.channel": "stable",
"rust-client.revealOutputChannelOn": "warn",
"rust-client.updateOnStartup": true,
"rust-client.disableRustup": true,
"prettier.singleQuote": true,
"prettier.trailingComma": "es5",
"prettier.tabWidth": 4,
"[rust]": {
"editor.defaultFormatter": "matklad.rust-analyzer"
},
"editor.fontFamily": "'JetBrainsMono Nerd Font Mono'",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"go.useLanguageServer": true,
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
},
// Optional: Disable snippets, as they conflict with completion ranking.
"editor.snippetSuggestions": "none",
},
"[go.mod]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
},
},
"gopls": {
// Add parameter placeholders when completing a function.
"usePlaceholders": true,
// If true, enable additional analyses with staticcheck.
// Warning: This will significantly increase memory usage.
"staticcheck": false,
},
"workbench.startupEditor": "newUntitledFile",
"git.autofetch": true,
"explorer.confirmDragAndDrop": false,
"[markdown]": {
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
"git.enableSmartCommit": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment