mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-03-01 02:33:53 +00:00
37 lines
1023 B
JSON
37 lines
1023 B
JSON
// Place your settings in this file to overwrite default and user settings.
|
|
{
|
|
// Unofficially, QMK uses spaces for indentation
|
|
"editor.insertSpaces": true,
|
|
// Configure glob patterns for excluding files and folders.
|
|
"files.exclude": {
|
|
"**/.build": true,
|
|
"**/*.hex": true,
|
|
"**/*.bin": true,
|
|
"**/*.uf2": true
|
|
},
|
|
"files.associations": {
|
|
"*.h": "c",
|
|
"*.c": "c",
|
|
"*.inc": "c",
|
|
"*.cpp": "cpp",
|
|
"*.hpp": "cpp",
|
|
"xstddef": "c",
|
|
"type_traits": "c",
|
|
"utility": "c",
|
|
"ranges": "c"
|
|
},
|
|
"[markdown]": {
|
|
"editor.trimAutoWhitespace": false,
|
|
"files.trimTrailingWhitespace": false
|
|
},
|
|
"python.formatting.provider": "yapf",
|
|
"[json]": {
|
|
"editor.formatOnSave": false
|
|
},
|
|
"clangd.arguments": [
|
|
"--header-insertion=never"
|
|
],
|
|
"cmake.configureOnOpen": true,
|
|
"cmake.sourceDirectory": "E:/projects/qmk_firmware/lib/pico-sdk/src/common/boot_picoboot"
|
|
}
|