• Updates IDE settings for improved file nesting and exclusions • Introduces biome configuration file for consistent project formatting • Implements brightness service and UI component for monitor brightness control • Refactors layout and code formatting for consistency across components
28 lines
753 B
JSON
28 lines
753 B
JSON
{
|
|
"biome.enabled": true,
|
|
"editor.formatOnSave": true,
|
|
"explorer.fileNesting.patterns": {
|
|
"flake.nix": "*.nix, flake.lock, .envrc, .tool-versions",
|
|
"package.json": " pnpm-lock.yaml, tsconfig.json, .gitignore, biome.jsonc"
|
|
},
|
|
"files.exclude": {
|
|
".direnv": true,
|
|
// "@girs": true,
|
|
"node_modules": true
|
|
},
|
|
"terminal.integrated.defaultProfile.linux": "fish-fhs",
|
|
"terminal.integrated.profiles.linux": {
|
|
"fish-fhs": {
|
|
"args": [
|
|
"--user",
|
|
"--pty",
|
|
"--quiet",
|
|
"--same-dir",
|
|
"--service-type=exec",
|
|
"fish"
|
|
],
|
|
"path": "systemd-run"
|
|
}
|
|
},
|
|
"typescript.tsdk": "./node_modules/typescript/lib"
|
|
}
|