Files
lk/lk.code-workspace
Travis Geiselbrecht c79960a48c [docs] start building more comprehensive documentation
About half and half AI generated stuff and manually curated, but it's a
pretty good start.

Add a helpful markdown addon to the workspace.
2025-07-29 01:22:11 -07:00

40 lines
1.1 KiB
Plaintext

{
"folders": [
{
"path": "."
}
],
"settings": {
// Disable auto-formatting till the project decides on a
// machine-readable config to control it (e.g., .clang-format).
"[c]": {
"editor.formatOnSave": false,
},
"[cpp]": {
"editor.formatOnSave": false,
},
// Allows editor.tabSize to be specified (otherwise it is overridden as
// auto-detected).
"editor.detectIndentation": false,
// Convert tabs to spaces.
"editor.insertSpaces": true,
"editor.tabSize": 4,
"files.exclude": {
"**/.cache": true,
"**/.clangd": true,
"build-*": true,
},
"markdownlint.config": {
"MD024": { "siblings_only": true },
}
},
"extensions": {
"recommendations": [
"mkornelsen.vscode-arm64",
"llvm-vs-code-extensions.vscode-clangd",
"sunshaoce.risc-v",
"davidanson.vscode-markdownlint"
]
}
}