nixos-config/user/vscode/settings.json
2024-08-20 19:21:57 -03:00

32 lines
1 KiB
JSON

{
"terminal.integrated.sendKeybindingsToShell": true,
"window.titleBarStyle": "custom",
"workbench.preferredDarkColorTheme": "GitHub Dark",
"workbench.preferredLightColorTheme": "GitHub Light",
"window.autoDetectColorScheme": true,
"workbench.colorTheme": "GitHub Dark",
"git.autofetch": true,
"git.confirmSync": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"update.mode": "none",
"intelephense.files.exclude": [
"**/.git/**",
"**/.svn/**",
"**/.hg/**",
"**/CVS/**",
"**/.DS_Store/**",
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**/{Tests,tests}/**",
"**/.history/**",
"**/vendor/**/vendor/**",
"**/.direnv/**"
],
"intelephense.format.braces": "k&r",
"continue.enableTabAutocomplete": true,
"intelephense.completion.fullyQualifyGlobalConstantsAndFunctions": true,
"diffEditor.hideUnchangedRegions.enabled": true,
"nix.formatterPath": "nixfmt",
"explorer.confirmDelete": false,
}