Last active 1 week ago

Revision 8e2e9df23d087989250f8eb558f9d5bb076c292f

cursor-base-settings.jsonc Raw
1{
2 // #region common
3 "window.autoDetectColorScheme": true,
4 "workbench.startupEditor": "newUntitledFile",
5 "workbench.colorTheme": "One Dark Pro Darker",
6 "workbench.preferredLightColorTheme": "GitHub Light Default",
7 "workbench.preferredDarkColorTheme": "One Dark Pro Darker",
8 "workbench.iconTheme": "catppuccin-latte",
9 "workbench.productIconTheme": "icons-carbon",
10 "workbench.list.smoothScrolling": true,
11 "workbench.tree.indent": 16,
12 "workbench.activityBar.orientation": "vertical",
13 "workbench.editor.highlightModifiedTabs":true,
14 "editor.fontSize": 13,
15 "editor.fontFamily": "'JetBrains Maple Mono', monospace",
16 "editor.fontLigatures": "'calt' on, 'liga' on, 'ss04' on, 'ss11' on, 'ss13' on, 'ss14' on",
17 "editor.tokenColorCustomizations": {
18 "textMateRules": [
19 {
20 "scope": [
21 "comment",
22 "keyword.operator.expression",
23 "keyword.other",
24 "keyword.operator.new",
25 "variable.language",
26 "entity.other.attribute-name",
27 "storage"
28 ],
29 "settings": { "fontStyle": "italic" }
30 },
31 {
32 "scope": ["storage.type.function.arrow"],
33 "settings": { "fontStyle": "" }
34 }
35 ]
36 },
37 "terminal.integrated.fontSize": 14,
38 "terminal.integrated.fontFamily": "'IBM Plex Mono', 'Symbols Nerd Font Mono', monospace",
39 "terminal.integrated.cursorBlinking": true,
40 "terminal.integrated.persistentSessionReviveProcess": "never",
41 "editor.rulers": [80, 120, 160],
42 "editor.renderWhitespace": "boundary",
43 "editor.wordWrap": "bounded",
44 "editor.cursorBlinking": "expand",
45 "editor.guides.bracketPairs": "active",
46 "editor.find.addExtraSpaceOnTop": false,
47 "debug.onTaskErrors": "debugAnyway",
48 "diffEditor.ignoreTrimWhitespace": false,
49 "diffEditor.hideUnchangedRegions.enabled": true,
50 "explorer.confirmDelete": false,
51 "explorer.confirmDragAndDrop": false,
52 "files.eol": "\n",
53 "git.autofetch": true,
54 "git.untrackedChanges": "separate",
55 "scm.diffDecorationsGutterWidth": 2,
56 // #region fixed
57 "editor.linkedEditing": true,
58 "editor.wordWrapColumn": 80,
59 "editor.tabSize": 2,
60 "editor.formatOnPaste": false,
61 "editor.formatOnSave": false,
62 "editor.formatOnType": false,
63 // #endregion fixed
64 // #endregion common
65}