cursor-base-settings.jsonc
· 1.6 KiB · JSON
Raw
{
// #region common
"window.autoDetectColorScheme": true,
"workbench.colorTheme": "One Dark Pro Darker",
"workbench.preferredLightColorTheme": "GitHub Light Default",
"workbench.preferredDarkColorTheme": "One Dark Pro Darker",
"workbench.iconTheme": "catppuccin-latte",
"workbench.productIconTheme": "icons-carbon",
"workbench.list.smoothScrolling": true,
"workbench.tree.indent": 16,
"workbench.activityBar.orientation": "vertical",
"editor.fontSize": 13,
"editor.fontFamily": "'JetBrains Maple Mono', monospace",
"editor.fontLigatures": "'calt' on, 'liga' on, 'ss04' on, 'ss11' on, 'ss13' on, 'ss14' on",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"keyword.operator.expression",
"keyword.other",
"keyword.operator.new",
"variable.language",
"entity.other.attribute-name",
"storage"
],
"settings": { "fontStyle": "italic" }
},
{
"scope": ["storage.type.function.arrow"],
"settings": { "fontStyle": "" }
}
]
},
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "'IBM Plex Mono', 'Symbols Nerd Font Mono', monospace",
"editor.rulers": [80, 120, 160],
"editor.renderWhitespace": "boundary",
"editor.wordWrap": "bounded",
"editor.cursorBlinking": "expand",
"editor.guides.bracketPairs": "active",
// #region fixed
"editor.linkedEditing": true,
"editor.wordWrapColumn": 80,
"editor.tabSize": 2,
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.formatOnType": false,
// #endregion fixed
// #endregion common
}
| 1 | { |
| 2 | // #region common |
| 3 | "window.autoDetectColorScheme": true, |
| 4 | "workbench.colorTheme": "One Dark Pro Darker", |
| 5 | "workbench.preferredLightColorTheme": "GitHub Light Default", |
| 6 | "workbench.preferredDarkColorTheme": "One Dark Pro Darker", |
| 7 | "workbench.iconTheme": "catppuccin-latte", |
| 8 | "workbench.productIconTheme": "icons-carbon", |
| 9 | "workbench.list.smoothScrolling": true, |
| 10 | "workbench.tree.indent": 16, |
| 11 | "workbench.activityBar.orientation": "vertical", |
| 12 | "editor.fontSize": 13, |
| 13 | "editor.fontFamily": "'JetBrains Maple Mono', monospace", |
| 14 | "editor.fontLigatures": "'calt' on, 'liga' on, 'ss04' on, 'ss11' on, 'ss13' on, 'ss14' on", |
| 15 | "editor.tokenColorCustomizations": { |
| 16 | "textMateRules": [ |
| 17 | { |
| 18 | "scope": [ |
| 19 | "comment", |
| 20 | "keyword.operator.expression", |
| 21 | "keyword.other", |
| 22 | "keyword.operator.new", |
| 23 | "variable.language", |
| 24 | "entity.other.attribute-name", |
| 25 | "storage" |
| 26 | ], |
| 27 | "settings": { "fontStyle": "italic" } |
| 28 | }, |
| 29 | { |
| 30 | "scope": ["storage.type.function.arrow"], |
| 31 | "settings": { "fontStyle": "" } |
| 32 | } |
| 33 | ] |
| 34 | }, |
| 35 | "terminal.integrated.fontSize": 14, |
| 36 | "terminal.integrated.fontFamily": "'IBM Plex Mono', 'Symbols Nerd Font Mono', monospace", |
| 37 | "editor.rulers": [80, 120, 160], |
| 38 | "editor.renderWhitespace": "boundary", |
| 39 | "editor.wordWrap": "bounded", |
| 40 | "editor.cursorBlinking": "expand", |
| 41 | "editor.guides.bracketPairs": "active", |
| 42 | // #region fixed |
| 43 | "editor.linkedEditing": true, |
| 44 | "editor.wordWrapColumn": 80, |
| 45 | "editor.tabSize": 2, |
| 46 | "editor.formatOnPaste": false, |
| 47 | "editor.formatOnSave": false, |
| 48 | "editor.formatOnType": false, |
| 49 | // #endregion fixed |
| 50 | // #endregion common |
| 51 | } |