Skip to content

Commit

Permalink
Update vscode settings and devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
reijoh committed Nov 8, 2023
1 parent d28d46a commit 52162d5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"customizations": {
"vscode": {
"settings": {
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.defaultProfile.linux": "zsh"
"security.workspace.trust.untrustedFiles": "open"
},
"extensions": [
"bierner.markdown-preview-github-styles",
"catppuccin.catppuccin-vsc",
"catppuccin.catppuccin-vsc-icons",
"dbaeumer.vscode-eslint",
"DavidAnson.vscode-markdownlint",
"esbenp.prettier-vscode",
"GitHub.vscode-pull-request-github",
"streetsidesoftware.code-spell-checker",
"yzhang.markdown-all-in-one"
Expand Down
32 changes: 19 additions & 13 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,22 @@
"debug.internalConsoleOptions": "neverOpen",
"editor.accessibilitySupport": "off",
"editor.bracketPairColorization.enabled": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.detectIndentation": false,
"editor.fontFamily": "FiraCode Nerd Font Mono",
"editor.fontSize": 14,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.guides.bracketPairs": "active",
"editor.tabCompletion": "on",
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.autoSave": "onFocusChange",
"files.encoding": "utf8",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"git.pruneOnFetch": true,
"git.enableSmartCommit": true,
"hediet.vscode-drawio.resizeImages": null,
"githubPullRequests.pullBranch": "always",
"markdown.extension.orderedList.autoRenumber": false,
"markdown.extension.toc.updateOnSave": false,
"markdownlint.config": {
Expand All @@ -22,21 +27,22 @@
"MD028": false,
"MD041": false
},
"workbench.editorAssociations": {
"*.drawio.png": "hediet.vscode-drawio"
},
"terminal.integrated.defaultProfile.linux": "zsh",
"workbench.colorTheme": "Catppuccin Mocha",
"workbench.editor.decorations.colors": true,
"workbench.editor.decorations.badges": true,
"workbench.editor.wrapTabs": true,
"workbench.iconTheme": "catppuccin-macchiato",
"workbench.startupEditor": "none",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
"[json,jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "yzhang.markdown-all-in-one",
"editor.wordWrap": "off"
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.wordWrap": "off",
"files.encoding": "utf8",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true
}
}

0 comments on commit 52162d5

Please sign in to comment.