|
1 | 1 | { |
| 2 | + "workbench.iconTheme": "material-icon-theme", |
2 | 3 | "workbench.editor.highlightModifiedTabs": true, |
3 | 4 | "explorer.autoReveal": false, |
4 | 5 | "explorer.openEditors.visible": 0, |
5 | 6 | "git.autofetch": true, |
| 7 | + "git.autofetchPeriod": 120, |
6 | 8 | "diffEditor.ignoreTrimWhitespace": false, |
7 | 9 | "editor.fontWeight": "500", |
8 | 10 | "editor.renderWhitespace": "all", |
9 | | - "editor.renderControlCharacters": true, |
| 11 | + "editor.wordWrap": "on", |
| 12 | + "editor.smoothScrolling": true, |
10 | 13 | "editor.detectIndentation": false, |
11 | 14 | "editor.insertSpaces": false, |
12 | | - "editor.tabSize": 4, |
13 | 15 | "[markdown]": |
14 | 16 | { |
15 | 17 | "editor.insertSpaces": true, |
16 | | - "editor.tabSize": 4 |
17 | 18 | }, |
18 | 19 | "[python]": |
19 | 20 | { |
20 | 21 | "editor.insertSpaces": true, |
21 | 22 | "editor.tabSize": 4 |
22 | 23 | }, |
23 | | - "[yaml]": |
24 | | - { |
25 | | - "editor.insertSpaces": true, |
26 | | - "editor.tabSize": 4 |
27 | | - }, |
28 | 24 | "[yml]": |
29 | 25 | { |
30 | 26 | "editor.insertSpaces": true, |
31 | | - "editor.tabSize": 4 |
32 | | - }, |
33 | | - "[pug]": |
34 | | - { |
35 | | - "editor.insertSpaces": false, |
36 | | - "editor.tabSize": 4 |
| 27 | + "editor.tabSize": 2 |
37 | 28 | }, |
38 | 29 | "files.eol": "\n", |
39 | 30 | "files.trimTrailingWhitespace": true, |
40 | 31 | "files.associations": |
41 | 32 | { |
42 | 33 | "*.env.*": "dotenv", |
43 | 34 | "*.json.example": "json", |
44 | | - "requirements*.txt": "pip-requirements" |
| 35 | + "requirements*.txt": "pip-requirements", |
| 36 | + "*Dockerfile*": "dockerfile", |
| 37 | + ".dockerignore": "ignore", |
| 38 | + "*.py.bak": "python" |
45 | 39 | }, |
46 | 40 | "files.watcherExclude": |
47 | 41 | { |
|
52 | 46 | "**/.hg/**": true, |
53 | 47 | "**/.hg/store/**": true, |
54 | 48 | "**/CVS/**": true, |
| 49 | + "**/node_modules/*/**": true, |
| 50 | + "**/bower_components/**": true, |
55 | 51 | "**/.vscode-server/**": true, |
56 | 52 | "**/.idea": true, |
57 | | - "**/node_modules/**": true, |
58 | | - "**/bower_components/**": true, |
59 | 53 | "**/env/**": true, |
60 | 54 | "**/venv/**": true, |
61 | 55 | "**/envs/**": true, |
62 | 56 | "**/__pycache__/**": true, |
63 | 57 | "**/dist/**": true, |
64 | 58 | "**/sdist/**": true, |
| 59 | + "**/build/**": true, |
| 60 | + "**/builds/**": true, |
65 | 61 | "**/log/**": true, |
66 | 62 | "**/logs/**": true, |
67 | 63 | "**/backup/**": true, |
68 | 64 | "**/backups/**": true, |
69 | 65 | "**/data/**": true, |
| 66 | + "**/dataset/**": true, |
| 67 | + "**/datasets/**": true, |
70 | 68 | "**/db/**": true, |
71 | 69 | "**/tmp/**": true, |
| 70 | + "**/archive/**": true, |
72 | 71 | "**/*.pyc": true, |
73 | 72 | "**/*.log": true, |
74 | 73 | "**/*.out": true, |
75 | 74 | "**/*.bak": true, |
76 | 75 | "**/.bak.*": true, |
77 | | - "**/.DS_Store": true |
| 76 | + "**/.DS_Store": true, |
| 77 | + "**/Thumbs.db": true |
78 | 78 | }, |
79 | 79 | "files.exclude": |
80 | 80 | { |
81 | 81 | "**/.git": false, |
82 | 82 | "**/.svn": false, |
83 | 83 | "**/.hg": false, |
84 | 84 | "**/CVS": false, |
85 | | - "**/.DS_Store": false |
| 85 | + "**/.DS_Store": false, |
| 86 | + "**/Thumbs.db": false |
86 | 87 | }, |
87 | 88 | "search.exclude": |
88 | 89 | { |
89 | 90 | "**/.git": true, |
90 | 91 | "**/.svn": true, |
91 | 92 | "**/.hg": true, |
92 | 93 | "**/CVS": true, |
| 94 | + "**/node_modules": true, |
| 95 | + "**/bower_components": true, |
| 96 | + "**/*.code-search": true, |
93 | 97 | "**/.vscode": true, |
94 | 98 | "**/.vscode-server": true, |
95 | | - "**/*.code-search": true, |
96 | 99 | "**/.idea": true, |
97 | | - "**/node_modules": true, |
98 | | - "**/bower_components": true, |
99 | 100 | "**/env": true, |
100 | 101 | "**/venv": true, |
101 | 102 | "**/envs": true, |
102 | 103 | "**/__pycache__": true, |
103 | 104 | "**/dist": true, |
104 | 105 | "**/sdist": true, |
| 106 | + "**/build": true, |
| 107 | + "**/builds": true, |
105 | 108 | "**/log": true, |
106 | 109 | "**/logs": true, |
107 | 110 | "**/backup": true, |
108 | 111 | "**/backups": true, |
109 | 112 | "**/data": true, |
| 113 | + "**/dataset": true, |
| 114 | + "**/datasets": true, |
110 | 115 | "**/db": true, |
111 | 116 | "**/tmp": true, |
| 117 | + "**/archive": true, |
112 | 118 | "**/*.pyc": true, |
113 | 119 | "**/*.log": true, |
114 | 120 | "**/*.out": true, |
115 | 121 | "**/*.bak": true, |
116 | 122 | "**/.bak.*": true, |
117 | | - "**/.DS_Store": true |
| 123 | + "**/.DS_Store": true, |
| 124 | + "**/Thumbs.db": true |
118 | 125 | }, |
119 | | - "git-graph.maxDepthOfRepoSearch": 4, |
120 | | - "javascript.suggest.autoImports": false, |
121 | | - "typescript.suggest.autoImports": false, |
122 | 126 | "python.languageServer": "Pylance", |
123 | | - "python.pythonPath": "${env:HOME}/workspaces/runtimes/miniconda3/envs/py38/bin/python" |
| 127 | + "git-graph.maxDepthOfRepoSearch": 4 |
124 | 128 | } |
0 commit comments