nixos-config/user/vscode/settings.json

33 lines
1.1 KiB
JSON
Raw Normal View History

2023-08-16 11:09:25 -03:00
{
"terminal.integrated.sendKeybindingsToShell": true,
"window.titleBarStyle": "custom",
"workbench.preferredDarkColorTheme": "GitHub Dark",
"workbench.preferredLightColorTheme": "GitHub Light",
"window.autoDetectColorScheme": true,
"workbench.colorTheme": "GitHub Dark",
2023-08-16 11:23:25 -03:00
"git.autofetch": true,
2023-08-16 11:45:16 -03:00
"git.confirmSync": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
2023-10-02 14:54:02 -03:00
"update.mode": "none",
2024-05-28 01:46:54 -03:00
"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",
2024-08-20 19:16:39 -03:00
"continue.enableTabAutocomplete": true,
"intelephense.completion.fullyQualifyGlobalConstantsAndFunctions": true,
"diffEditor.renderSideBySide": false,
"diffEditor.hideUnchangedRegions.enabled": true,
"nix.formatterPath": "nixfmt",
"explorer.confirmDelete": false,
2024-05-28 01:46:54 -03:00
}