-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cursor-settings.json
174 lines (155 loc) · 4.37 KB
/
.cursor-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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"editor.fontFamily": "JetBrains Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 13,
"editor.lineHeight": 1.5,
"editor.fontLigatures": true,
"editor.rulers": [80, 100],
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "d"],
"after": ["d", "d"]
},
{
"before": ["<C-n>"],
"commands": [":nohl"]
},
{
"before": ["K"],
"after": ["5", "k"]
},
{
"before": ["J"],
"after": ["5", "j"]
},
{
"before": ["]", "d"],
"commands": ["editor.action.marker.next"]
},
{
"before": ["[", "d"],
"commands": ["editor.action.marker.prev"]
}
],
"vim.leader": "<space>",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[ruby]": {
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.defaultFormatter": "rebornix.ruby"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"prettier.singleQuote": true,
"prettier.trailingComma": "es5",
"ruby.useBundler": true,
"ruby.useLanguageServer": true,
"ruby.lint": {
"rubocop": {
"useBundler": true
}
},
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.suggest.autoImports": true,
"editor.formatOnPaste": true,
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.integrated.fontSize": 12,
"files.associations": {
"*.erb": "erb",
"*.jsx": "javascriptreact",
"*.tsx": "typescriptreact",
"Dockerfile*": "dockerfile"
},
"workbench.sideBar.location": "right",
"workbench.statusBar.visible": true,
"workbench.activityBar.location": "default",
"workbench.editor.showTabs": "multiple",
"workbench.layoutControl.enabled": true,
"editor.suggestLineHeight": 24,
"editor.suggestFontSize": 13,
"editor.quickSuggestionsDelay": 30,
"editor.acceptSuggestionOnEnter": "on",
"workbench.colorTheme": "GitHub Dark Default",
"workbench.editor.enablePreview": false,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.autofetch": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true,
"**/log": true
},
"editor.cursorSmoothCaretAnimation": "on",
"editor.quickSuggestions": {
"other": "on",
"comments": "off",
"strings": "off"
},
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "line",
"editor.scrollBeyondLastLine": false,
"editor.minimap.enabled": false,
"workbench.panel.defaultLocation": "bottom",
"workbench.panel.opensMaximized": "never",
"window.commandCenter": true,
"editor.autoClosingBrackets": "always",
"editor.autoClosingQuotes": "always",
"editor.acceptSuggestionOnCommitCharacter": true,
"editor.mouseWheelScrollSensitivity": 1,
"keyboard.dispatch": "keyCode",
"editor.find.seedSearchStringFromSelection": "never",
"editor.dragAndDrop": false,
"editor.multiCursorModifier": "alt",
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?",
"editor.fastScrollSensitivity": 5,
"vim.timeout": 100,
"vim.handleKeys": {
"<C-d>": true,
"<C-u>": true,
"k": true,
"j": true,
"h": true,
"l": true
},
"vim.smartRelativeLine": true,
"vim.cursorStylePerMode.normal": "block",
"vim.cursorStylePerMode.insert": "line",
"vim.cursorStylePerMode.replace": "underline",
"cursor.chat.premiumChatAutoScrollWhenAtBottom": true,
"liveServer.settings.donotShowInfoMsg": true,
"editor.largeFileOptimizations": false,
"makefile.configureOnOpen": true,
"redhat.telemetry.enabled": true,
"npm.keybindingsChangedWarningShown": true
}