Skip to content

Commit 04144d9

Browse files
Disable autocomplete and AI suggestions in VS Code
1 parent b31a586 commit 04144d9

3 files changed

Lines changed: 25 additions & 3 deletions

File tree

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
node_modules
22
.DS_Store
3-
.vscode
4-
**/.DS_Store
3+
**/.DS_Store
4+
.vscode/*
5+
!.vscode/settings.json
6+
!.vscode/extensions.json

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
"ritwickdey.LiveServer",
88
"vsliveshare.vsliveshare",
99
"Orta.vscode-jest"
10-
]
10+
],
11+
"unwantedRecommendations": ["github.copilot", "github.copilot-chat"]
1112
}

.vscode/settings.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
// Disable AI code suggestions (Copilot ghost text and similar)
3+
"editor.inlineSuggest.enabled": false,
4+
"github.copilot.enable": { "*": false },
5+
"github.copilot.nextEditSuggestions.enabled": false,
6+
"chat.commandCenter.enabled": false,
7+
8+
// Disable non-AI autocomplete (IntelliSense)
9+
"editor.quickSuggestions": {
10+
"other": false,
11+
"comments": false,
12+
"strings": false
13+
},
14+
"editor.suggestOnTriggerCharacters": false,
15+
"editor.wordBasedSuggestions": "off",
16+
"editor.snippetSuggestions": "none",
17+
"editor.tabCompletion": "off",
18+
"editor.parameterHints.enabled": false
19+
}

0 commit comments

Comments
 (0)