Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh"
"terminal.integrated.defaultProfile.linux": "bash"
},
"extensions": [
// Liquid tags auto-complete
Expand All @@ -22,7 +22,10 @@
"stylelint.vscode-stylelint",
"yzhang.markdown-all-in-one",
// Git
"mhutchie.git-graph"
"mhutchie.git-graph",
// Blog writing utilities
"streetsidesoftware.code-spell-checker",
"davidlday.languagetool-linter"
]
}
}
Expand Down
16 changes: 15 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,19 @@
// Run tasks in macOS
"terminal.integrated.profiles.osx": {
"zsh": { "path": "/bin/zsh", "args": ["-l", "-i"] }
}
},
"cSpell.words": [
"davidlday",
"devcontainers",
"esbenp",
"killalau",
"languagetool",
"mhutchie",
"mkhl",
"shellcheck",
"shfmt",
"timonwong",
"yzhang"
],
"languageToolLinter.serviceType": "public"
}