forked from lewagon/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
116 lines (116 loc) · 3.88 KB
/
Copy pathsettings.json
File metadata and controls
116 lines (116 loc) · 3.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"[python]": {
"editor.bracketPairColorization.enabled": false,
"editor.guides.bracketPairs": false,
"editor.tabSize": 4,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnType": true
},
"[javascript]": {
"editor.tabSize": 2
},
"editor.bracketPairColorization.enabled": true,
"editor.detectIndentation": false,
"editor.guides.bracketPairs": true,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderControlCharacters": true,
"editor.rulers": [
80,
120
],
"editor.showFoldingControls": "always",
"editor.snippetSuggestions": "top",
"emmet.includeLanguages": {
"erb": "html"
},
"emmet.showSuggestionsAsSnippets": true,
"emmet.triggerExpansionOnTab": true,
"explorer.confirmDelete": false,
"files.exclude": {
"**/.DS_Store": true,
"**/.egg-info": true,
"**/.git": true,
".asset-cache": true,
".bundle": true,
".ipynb_checkpoints": true,
".pytest_cache": true,
".sass-cache": true,
".svn": true,
"**/__pycache__": true,
"_site": true,
"build": true,
"coverage": true,
"dist": true,
"log": true,
"node_modules": true,
"public/packs": true,
"tmp": true
},
"files.hotExit": "off",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/audits/**": true,
"**/coverage/**": true,
"**/log/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/vendor/**": true
},
"git.enabled": true,
"python.defaultInterpreterPath": "~/.pyenv/shims/python",
"python.formatting.provider": "black",
"python.terminal.activateEnvironment": false,
"ruby.lint": {
"rubocop": true
},
"telemetry.telemetryLevel": "off",
"window.restoreWindows": "none",
"workbench.iconTheme": "catppuccin-mocha",
"workbench.settings.editor": "json",
"workbench.settings.openDefaultSettings": true,
"workbench.settings.useSplitJSON": true,
"workbench.startupEditor": "newUntitledFile",
"editor.inlineSuggest.enabled": true,
"editor.formatOnSave": true,
"explorer.confirmDragAndDrop": false,
"chatgpt.lang": "en",
"explorer.compactFolders": false,
"github.copilot.editor.enableAutoCompletions": true,
"notebook.lineNumbers": "on",
"jupyter.askForKernelRestart": false,
"jupyter.notebookFileRoot": "${workspaceFolder}",
"editor.fontSize": 12,
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace",
"terminal.integrated.defaultProfile.linux": "zsh",
"remote.SSH.configFile": "/Users/pjcopado/.ssh/config",
"markdown-preview-enhanced.previewTheme": "monokai.css",
"markdown-preview-enhanced.codeBlockTheme": "auto.css",
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb, bun.lock",
"*.sqlite": "${capture}.${extname}-*",
"*.db": "${capture}.${extname}-*",
"*.sqlite3": "${capture}.${extname}-*",
"*.db3": "${capture}.${extname}-*",
"*.sdb": "${capture}.${extname}-*",
"*.s3db": "${capture}.${extname}-*"
},
"workbench.editorAssociations": {
"*.copilotmd": "vscode.markdown.preview.editor",
"*.db": "sqlite3-editor.editor"
},
"workbench.colorTheme": "Kanagawa",
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
}
}