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
|
{
"keyboard.dispatch": "keyCode",
"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
},
"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": ""
}
}
},
"[markdown]": {
"editor.fontWeight": "normal"
},
}
|