-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.json
122 lines (122 loc) · 3.67 KB
/
settings.json
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
{
"editor.fontFamily": "JetBrains Mono",
"editor.fontWeight": "normal",
"editor.lineNumbers": "relative",
"editor.rulers": [
80,
120
],
"editor.renderWhitespace": "boundary",
"editor.fontLigatures": true,
"editor.insertSpaces": true,
"editor.trimAutoWhitespace": false,
"editor.autoClosingBrackets": "never",
"editor.autoClosingQuotes": "never",
"editor.minimap.enabled": false,
"workbench.activityBar.visible": false,
"workbench.colorCustomizations": {
"statusBar.background": "#B48EAD",
"statusBar.noFolderBackground": "#B48EAD",
"statusBar.debuggingBackground": "#B48EAD",
"statusBar.foreground": "#000",
"statusBar.debuggingForeground": "#000"
},
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"workbench.startupEditor": "none",
"workbench.editor.enablePreview": false,
"files.autoSaveDelay": 500,
"security.workspace.trust.untrustedFiles": "open",
// vim config
"vim.easymotion": true,
"vim.incsearch": true,
"vim.hlsearch": true,
"vim.useSystemClipboard": true,
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<Leader>","g","d"],
"commands": ["editor.action.goToDeclaration"]
},
{
"before": ["<Leader>", "g", "r"],
"commands": ["editor.action.goToReferences"]
},
{
"before": [ "<Leader>", "r", "s" ],
"commands": [ "editor.action.rename" ]
},
{
"before": ["<Leader>", "r", "f"],
"commands": ["fileutils.renameFile"]
},
{
"before": ["<Leader>", "f", "d"],
"commands": ["editor.action.formatDocument"]
},
{
"before": ["C-v", "e"],
"commands": ["workbench.view.explorer"]
},
{
"before": ["C-v", "p"],
"commands": ["workbench.view.plugins"]
},
{
"before": ["C-v", "d"],
"commands": ["workbench.view.debug"]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": [ ">" ],
"commands": ["editor.action.indentLines"]
},
{
"before": ["<"],
"commands": ["editor.action.outdentLines"]
},
{
"before": ["<Leader>", "f", "s"],
"commands": ["editor.action.formatSelection"]
},
{
"before": ["<Leader>", "\\", "y"],
"commands": ["editor.action.copyClipboardAction"]
}
],
"vim.statusBarColorControl": true,
"vim.statusBarColors.normal": [
"#8FBCBB",
"#000"
],
"vim.statusBarColors.insert": [
"#BF616A",
"#000"
],
"vim.statusBarColors.visual": [
"#B48EAD",
"#000"
],
"vim.statusBarColors.visualline": [
"#B48EAD",
"#000"
],
"vim.statusBarColors.visualblock": [
"#A3BE8C",
"#000"
],
"vim.statusBarColors.replace": "#D08770",
"vim.statusBarColors.commandlineinprogress": "#007ACC",
"vim.statusBarColors.searchinprogressmode": "#007ACC",
"vim.statusBarColors.easymotionmode": "#007ACC",
"vim.statusBarColors.easymotioninputmode": "#007ACC",
"vim.statusBarColors.surroundinputmode": "#007ACC",
"files.autoSave": "onFocusChange",
"terminal.integrated.fontSize": 14,
"workbench.iconTheme": "material-icon-theme",
"extensions.ignoreRecommendations": true,
"go.toolsManagement.autoUpdate": true,
"editor.fontSize": 14,
"redhat.telemetry.enabled": false,
"workbench.colorTheme": "GitHub Dark Default",
}