-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
139 lines (124 loc) · 3.18 KB
/
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
// Vim settings
"vim.leader": "<Space>",
"vim.useSystemClipboard": true,
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false,
"<C-e>": false,
"<C-w>": false,
"<C-c>": false,
"<C-r>": false,
"<C-k>": false,
"<C-v>": false,
"<A-w>": false
},
"vim.insertModeKeyBindings": [
{
"before": ["t", "n"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindings": [
{
"before": ["leader", "v"],
"commands": ["workbench.action.splitEditor"]
},
{
"before": ["leader", "s"],
"commands": ["workbench.action.splitEditorDown"]
},
{
"before": ["leader", "l"],
"commands": ["workbench.action.focusRightGroup"]
},
{
"before": ["leader", "h"],
"commands": ["workbench.action.focusLeftGroup"]
},
{
"before": ["leader", "k"],
"commands": ["workbench.action.focusAboveGroup"]
},
{
"before": ["leader", "j"],
"commands": ["workbench.action.focusBelowGroup"]
},
{
"before": ["leader", "e"],
"commands": ["workbench.view.explorer"]
},
{
"before": ["leader", "p"],
"commands": ["workbench.action.showCommands"]
},
{
"before": ["leader", "u", "p"],
"commands": ["editor.action.transformToUppercase"]
},
{
"before": ["leader", "l", "o"],
"commands": ["editor.action.transformToLowercase"]
}
],
"vim.visualModeKeyBindings": [
{
"before": ["leader", "c"],
"commands": ["editor.action.commentLine"]
}
],
// Performance BOOST ~
"extensions.experimental.affinity": {
"vscodevim.vim": 1
},
// Formatters
"[javascriptreact][javascript][typescript][typescriptreact]": {
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[rust]": {
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "jinxdash.prettier-rust"
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
// Editor
"editor.formatOnSave": true,
"editor.lineNumbers": "relative",
"editor.minimap.enabled": false,
"editor.renderWhitespace": "all",
"editor.tabCompletion": "onlySnippets",
"editor.snippetSuggestions": "top",
"editor.inlineSuggest.enabled": false,
"editor.quickSuggestions": {
"other": "off",
"comments": "off",
"strings": "off"
},
// Prettier
"prettier.tabWidth": 4,
"prettier.printWidth": 150,
// Window
"window.titleBarStyle": "custom",
"window.customMenuBarAltFocus": false,
"window.enableMenuBarMnemonics": false,
// Workbench
"workbench.sideBar.location": "right",
"workbench.activityBar.location": "hidden",
// Terminal
"terminal.integrated.env.windows": {},
// Typescript
"typescript.updateImportsOnFileMove.enabled": "always",
"breadcrumbs.enabled": false,
"console-ninja.featureSet": "Community",
"liveServer.settings.donotShowInfoMsg": true,
"explorer.openEditors.visible": 1,
"git.openRepositoryInParentFolders": "never",
"caps-lock-state.choose_display_method": "method_cursor_text"
}