forked from forks/qmk_firmware
21 lines
521 B
JSON
21 lines
521 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
|
|
},
|
|
"files.associations": {
|
|
"*.h": "c",
|
|
"*.c": "c",
|
|
"*.cpp": "cpp",
|
|
"*.hpp": "cpp",
|
|
"xstddef": "c",
|
|
"type_traits": "c",
|
|
"utility": "c"
|
|
}
|
|
}
|