-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvscode.settings.json
133 lines (131 loc) · 3.61 KB
/
vscode.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
123
124
125
126
127
128
129
130
131
132
133
{
"window.zoomLevel": 1,
"workbench.commandPalette.preserveInput": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.colorCustomizations": {
"statusBar.background": "#B48EAD",
"statusBar.noFolderBackground": "#B48EAD",
"statusBar.debuggingBackground": "#B48EAD",
"statusBar.foreground": "#434C5E",
"statusBar.debuggingForeground": "#434C5E"
},
"emmet.triggerExpansionOnTab": true,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.cursorSurroundingLines": 999,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"files.associations": {
"*.vue": "vue"
},
"editor.minimap.enabled": false,
"editor.fontFamily": "'Consolas ligaturized v2 Regular',Consolas,'Courier New', monospace",
"editor.fontLigatures": "'ss02'",
// "editor.fontLigatures": true,
"editor.accessibilitySupport": "off",
"editor.defaultFormatter": null,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.format.enable": true,
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[html, css]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"git.confirmSync": false,
"editor.guides.bracketPairs": true,
"editor.bracketPairColorization.enabled": true,
"gitlens.gitCommands.skipConfirmations": [
"fetch:command",
"stash-push:command",
"switch:command",
"push:command"
],
// vim
"vim.easymotion": true,
"vim.hlsearch": true,
"vim.highlightedyank.enable": true,
"vim.useSystemClipboard": true,
"vim.visualstar": true,
"vim.easymotionMarkerForegroundColorOneChar": "#F88070",
"vim.easymotionMarkerForegroundColorTwoCharFirst": "#F88070",
"vim.easymotionMarkerForegroundColorTwoCharSecond": "#F88070",
"vim.easymotionMarkerBackgroundColor": "#474747",
// "vim.easymotionMarkerHeight": 16,
"vim.statusBarColorControl": true,
"vim.statusBarColors.normal": ["#8FBCBB", "#434C5E"],
"vim.statusBarColors.insert": "#BF616A",
"vim.statusBarColors.visual": "#B48EAD",
"vim.statusBarColors.visualline": "#B48EAD",
"vim.statusBarColors.visualblock": "#A3BE8C",
"vim.statusBarColors.replace": "#D08770",
"vim.statusBarColors.commandlineinprogress": "#007ACC",
"vim.statusBarColors.searchinprogressmode": "#007ACC",
"vim.statusBarColors.easymotionmode": "#007ACC",
"vim.statusBarColors.easymotioninputmode": "#007ACC",
"vim.statusBarColors.surroundinputmode": "#007ACC",
"vim.insertModeKeyBindingsNonRecursive": [
{
"before": ["j", "k"],
"after": ["<Esc>"]
},
{
"before": ["k", "j"],
"after": ["<Esc>"]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": ["v"],
"after": ["<Esc>"]
},
{
"before": ["H"],
"after": ["^"]
},
{
"before": ["L"],
"after": ["$"]
},
{
"before": [">"],
"commands": ["editor.action.indentLines"]
},
{
"before": ["<"],
"commands": ["editor.action.outdentLines"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["leader", "<CR>"],
"commands": [":nohl"]
},
{
"before": ["Y"],
"after": ["y", "$"]
},
{
"before": ["H"],
"after": ["^"]
},
{
"before": ["L"],
"after": ["$"]
}
],
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.donotVerifyTags": true,
"liveServer.settings.useWebExt": true,
"liveServer.settings.proxy": {
"enable": true,
"baseUri": "/",
"proxyUri": "http://127.0.0.1:80"
},
"editor.renderWhitespace": "all",
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}