Add some vscode tricks for preferred zmk setup

This commit is contained in:
KemoNine 2020-12-29 00:19:03 +00:00
parent eee730fb13
commit 98f15f5ea7
2 changed files with 38 additions and 0 deletions

22
vscode/extensions.json Normal file
View File

@ -0,0 +1,22 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"ms-vscode.cpptools",
"plorefice.devicetree",
"spadin.zmk-tools",
"twxs.cmake",
"trond-snekvik.kconfig-lang",
"ms-python.python",
"yzhang.markdown-all-in-one",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"eamodio.gitlens"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
]
}

View File

@ -0,0 +1,16 @@
{
"folders": [
{
"path": "."
},
{
"path": "../zmk-config"
}
],
"settings": {
"files.associations": {
"*.overlay": "dts",
"*.keymap": "dts"
}
}
}