Last active 1 week ago

GabrielxD's Avatar GabrielxD revised this gist 1 week ago. Go to revision

1 file changed, 3 insertions, 1 deletion

cursor-base-settings.jsonc

@@ -9,7 +9,7 @@
9 9 "workbench.productIconTheme": "icons-carbon",
10 10 "workbench.list.smoothScrolling": true,
11 11 "workbench.tree.indent": 16,
12 - "workbench.activityBar.orientation": "vertical",
12 + "workbench.activityBar.orientation": "vertical", // remove this in vscode
13 13 "workbench.editor.highlightModifiedTabs":true,
14 14 "editor.fontSize": 13,
15 15 "editor.fontFamily": "'JetBrains Maple Mono', monospace",
@@ -53,6 +53,8 @@
53 53 "git.autofetch": true,
54 54 "git.untrackedChanges": "separate",
55 55 "scm.diffDecorationsGutterWidth": 2,
56 + "cSpell.userWords": ["gabrielxd"],
57 + "color-highlight.markerType": "outline",
56 58 // #region fixed
57 59 "editor.linkedEditing": true,
58 60 "editor.wordWrapColumn": 80,

GabrielxD's Avatar GabrielxD revised this gist 1 week ago. Go to revision

1 file changed, 14 insertions

cursor-base-settings.jsonc

@@ -1,6 +1,7 @@
1 1 {
2 2 // #region common
3 3 "window.autoDetectColorScheme": true,
4 + "workbench.startupEditor": "newUntitledFile",
4 5 "workbench.colorTheme": "One Dark Pro Darker",
5 6 "workbench.preferredLightColorTheme": "GitHub Light Default",
6 7 "workbench.preferredDarkColorTheme": "One Dark Pro Darker",
@@ -9,6 +10,7 @@
9 10 "workbench.list.smoothScrolling": true,
10 11 "workbench.tree.indent": 16,
11 12 "workbench.activityBar.orientation": "vertical",
13 + "workbench.editor.highlightModifiedTabs":true,
12 14 "editor.fontSize": 13,
13 15 "editor.fontFamily": "'JetBrains Maple Mono', monospace",
14 16 "editor.fontLigatures": "'calt' on, 'liga' on, 'ss04' on, 'ss11' on, 'ss13' on, 'ss14' on",
@@ -34,11 +36,23 @@
34 36 },
35 37 "terminal.integrated.fontSize": 14,
36 38 "terminal.integrated.fontFamily": "'IBM Plex Mono', 'Symbols Nerd Font Mono', monospace",
39 + "terminal.integrated.cursorBlinking": true,
40 + "terminal.integrated.persistentSessionReviveProcess": "never",
37 41 "editor.rulers": [80, 120, 160],
38 42 "editor.renderWhitespace": "boundary",
39 43 "editor.wordWrap": "bounded",
40 44 "editor.cursorBlinking": "expand",
41 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,
42 56 // #region fixed
43 57 "editor.linkedEditing": true,
44 58 "editor.wordWrapColumn": 80,

GabrielxD's Avatar GabrielxD revised this gist 1 week ago. Go to revision

1 file changed, 51 insertions

cursor-base-settings.jsonc(file created)

@@ -0,0 +1,51 @@
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 + }
Newer Older