cursor-base-settings.jsonc
· 2.3 KiB · JSON
Raw
{
// #region common
"window.autoDetectColorScheme": true,
"workbench.startupEditor": "newUntitledFile",
"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", // remove this in vscode
"workbench.editor.highlightModifiedTabs":true,
"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",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.persistentSessionReviveProcess": "never",
"editor.rulers": [80, 120, 160],
"editor.renderWhitespace": "boundary",
"editor.wordWrap": "bounded",
"editor.cursorBlinking": "expand",
"editor.guides.bracketPairs": "active",
"editor.find.addExtraSpaceOnTop": false,
"debug.onTaskErrors": "debugAnyway",
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.hideUnchangedRegions.enabled": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.eol": "\n",
"git.autofetch": true,
"git.untrackedChanges": "separate",
"scm.diffDecorationsGutterWidth": 2,
"cSpell.userWords": ["gabrielxd"],
"color-highlight.markerType": "outline",
// #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.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", // remove this in vscode |
| 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 | "cSpell.userWords": ["gabrielxd"], |
| 57 | "color-highlight.markerType": "outline", |
| 58 | // #region fixed |
| 59 | "editor.linkedEditing": true, |
| 60 | "editor.wordWrapColumn": 80, |
| 61 | "editor.tabSize": 2, |
| 62 | "editor.formatOnPaste": false, |
| 63 | "editor.formatOnSave": false, |
| 64 | "editor.formatOnType": false, |
| 65 | // #endregion fixed |
| 66 | // #endregion common |
| 67 | } |