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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
{
"vim.cursorStylePerMode.insert": "line",
"vim.cursorStylePerMode.normal": "block",
"vim.cursorStylePerMode.replace": "underline",
"vim.cursorStylePerMode.visual": "line",
"vim.cursorStylePerMode.visualblock": "line-thin",
"vim.cursorStylePerMode.visualline": "line",
"vim.handleKeys": {
"<C-d>": true,
"<C-x>": true,
"<C-c>": true,
"<C-z>": true,
"<C-s>": true,
"<C-p>": true,
"<C-i>": false,
"<C-n>": false,
"<C-k>": false,
"<C-w>": false
},
"vim.history": 1000,
"vim.statusBarColorControl": false,
"vim.shell": "/bin/sh",
"vim.textwidth": 120,
"vim.vimrc.enable": true,
"vim.vimrc.path": "$HOME/.code-vimrc",
"workbench.colorTheme": "Adwaita Dark",
"editor.fontFamily": "'Roboto Mono' ,'Droid Sans Mono', 'monospace', monospace",
"editor.wordWrap": "on",
"editor.smoothScrolling": false,
"workbench.reduceMotion": "on",
"editor.cursorBlinking": "solid",
"editor.minimap.enabled": false,
"editor.codeLens": false,
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"keyboard.dispatch": "keyCode",
"editor.lineNumbers": "relative",
"editor.fontWeight": "normal",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"markup.bold",
"strong",
"punctuation.definition.bold"
],
"settings": {
"fontStyle": ""
}
},
{
"scope": [
"markup.italic",
"emphasis",
"punctuation.definition.italic"
],
"settings": {
"fontStyle": ""
}
}
]
},
"editor.semanticTokenColorCustomizations": {
"rules": {
"*.bold": {
"fontStyle": ""
},
"*.italic": {
"fontStyle": ""
},
"*.underline": {
"fontStyle": ""
},
"*.strikethrough": {
"fontStyle": ""
},
"comment.bold": {
"fontStyle": ""
},
"comment.italic": {
"fontStyle": ""
},
"keyword.bold": {
"fontStyle": ""
},
"keyword.italic": {
"fontStyle": ""
},
"string.bold": {
"fontStyle": ""
},
"string.italic": {
"fontStyle": ""
},
"variable.bold": {
"fontStyle": ""
},
"variable.italic": {
"fontStyle": ""
},
"function.bold": {
"fontStyle": ""
},
"function.italic": {
"fontStyle": ""
},
"class.bold": {
"fontStyle": ""
},
"class.italic": {
"fontStyle": ""
},
"type.bold": {
"fontStyle": ""
},
"type.italic": {
"fontStyle": ""
}
}
},
"[markdown]": {
"editor.fontWeight": "normal"
},
"editor.fontLigatures": false,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"editor.bracketPairColorization.enabled": false,
"editor.guides.bracketPairs": false,
"editor.guides.bracketPairsHorizontal": false,
"editor.guides.highlightActiveBracketPair": false,
"editor.guides.indentation": false,
"editor.inlayHints.enabled": "off",
"editor.colorDecorators": false,
"editor.lightbulb.enabled": "off",
"editor.glyphMargin": false,
"editor.folding": false,
"workbench.editor.decorations.colors": false,
"workbench.editor.decorations.badges": false,
"chat.agent.maxRequests": 50,
}
|