-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode_macos.settings.json
97 lines (96 loc) · 2.52 KB
/
vscode_macos.settings.json
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
{
"[graphql]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.bracketPairColorization.enabled": true,
"editor.cursorStyle": "line",
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.guides.bracketPairs": true,
"editor.insertSpaces": false,
"editor.lineNumbers": "on",
"editor.renderWhitespace": "all",
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
"editor.wordWrap": "off",
"explorer.fileNesting.enabled": true,
"files.insertFinalNewline": true,
"json.schemas": [
{
"fileMatch": ["app.json", "app.config.json"],
"name": "vscode-expo-manifest",
"url": "file:///Users/jamesfirth/Library/Application%20Support/Code/User/globalStorage/bycedric.vscode-expo/manifest-43.0.0.json"
}
],
"prettier.singleQuote": true,
"redhat.telemetry.enabled": false,
"rest-client.logLevel": "verbose",
"rest-client.requestNameAsResponseTabTitle": true,
"terminal.integrated.profiles.osx": {
"bash": {
"args": ["-l"],
"icon": "terminal-bash",
"path": "bash"
},
"fish": {
"path": "fish"
},
"pwsh": {
"icon": "terminal-powershell",
"path": "pwsh"
},
"tmux": {
"icon": "terminal-tmux",
"path": "tmux"
},
"zsh": {
"args": ["-l"],
"path": "zsh"
}
},
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]"
],
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"vim.camelCaseMotion.enable": true,
"vim.easymotion": true,
"vim.handleKeys": {
"<C-d>": true
},
"vim.leader": ";",
"vim.smartRelativeLine": true,
"workbench.colorTheme": "Dracula",
"editor.rulers": [80, 120],
"deno.path": "/usr/local/bin/deno",
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.stickyScroll.enabled": true
}