-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathcursor-settings.json
More file actions
89 lines (89 loc) · 2.35 KB
/
cursor-settings.json
File metadata and controls
89 lines (89 loc) · 2.35 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
{
"vim.enable": true,
"vim.useSystemClipboard": true,
"vim.hlsearch": true,
"vim.incsearch": true,
"vim.ignorecase": true,
"vim.smartcase": true,
"vim.autoindent": true,
"vim.leader": ",",
"vim.normalModeKeyBindings": [
{
"before": [
",",
"w"
],
"commands": [
"workbench.action.files.save"
]
}
],
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"j"
],
"after": [
"<Esc>"
]
}
],
"editor.wordWrap": "on",
"editor.lineNumbers": "on",
"editor.renderWhitespace": "none",
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.autoIndent": "full",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.fontFamily": "TX-02",
"editor.fontSize": 14,
"terminal.integrated.profiles.osx": {
"fish": {
"path": "/opt/homebrew/bin/fish",
"args": ["-l"]
}
},
"terminal.integrated.defaultProfile.osx": "fish",
"terminal.integrated.inheritEnv": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"search.useGlobalIgnoreFiles": true,
"search.useParentIgnoreFiles": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"window.autoDetectColorScheme": true,
"workbench.preferredLightColorTheme": "Cursor Light",
"workbench.iconTheme": "vs-seti",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"extensions.autoUpdate": true,
"extensions.autoCheckUpdates": true,
"files.watcherExclude": {
"**/node_modules/**": true,
"**/dist/**": true,
"**/build/**": true,
"**/.git/**": true
},
"cursor.composer.textSizeScale": 1.15,
"cursor.composer.shouldChimeAfterChatFinishes": true,
"files.associations": {
"*.go": "go"
},
"[go]": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.formatOnSave": true
},
"workbench.settings.openDefaultKeybindings": true,
"workbench.preferredDarkColorTheme": "Gruvbox Dark Hard",
"editor.renderControlCharacters": false,
"go.toolsManagement.autoUpdate": true,
"cursor.composer.usageSummaryDisplay": "always",
"cursor.general.glassShowWarningNotifications": true,
"cursor.general.fontSmoothingAntialiased": true,
"update.releaseTrack": "dev",
"update.mode": "silentlyApplyOnQuit"
}