adierebel / My VSCode Settings

05 Mar 2026 at 15:01

Download
1 {
2 "files.associations": {
3 "*.html": "jinja-html"
4 },
5 "editor.renderControlCharacters": false,
6 "editor.insertSpaces": true,
7 "editor.renderWhitespace": "boundary",
8 "editor.smoothScrolling": true,
9 "editor.suggestSelection": "first",
10 "workbench.startupEditor": "newUntitledFile",
11 "workbench.iconTheme": "vscode-icon-theme",
12 "workbench.secondarySideBar.defaultVisibility": "hidden",
13 "breadcrumbs.enabled": false,
14 "window.titleBarStyle": "custom",
15 "explorer.compactFolders": false,
16 "git.openRepositoryInParentFolders": "always",
17 "terminal.integrated.defaultProfile.windows": "Command Prompt",
18 "search.exclude": {
19 "**/node_modules": true,
20 "**/bower_components": true,
21 "**/env": true,
22 "**/venv": true
23 },
24 "files.watcherExclude": {
25 "**/.git/objects/**": true,
26 "**/.git/subtree-cache/**": true,
27 "**/node_modules/**": true,
28 "**/env/**": true,
29 "**/venv/**": true,
30 "env-*": true
31 },
32 }
1 [
2 {
3 "key": "ctrl+alt+n",
4 "command": "workbench.action.terminal.sendSequence",
5 "args": { "text": "python -m venv venv\n call venv/Scripts/Activate.bat\npython -m pip install --upgrade pip wheel\n" }
6 },
7 {
8 "key": "ctrl+alt+v",
9 "command": "workbench.action.terminal.sendSequence",
10 "args": { "text": "call venv/Scripts/Activate.bat\n" }
11 },
12 {
13 "key": "ctrl+alt+c",
14 "command": "workbench.action.terminal.sendSequence",
15 "args": { "text": "deactivate\n" }
16 }
17 ]

Comments (0)