-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode.json
89 lines (89 loc) · 2.25 KB
/
vscode.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
{
"editor.fontSize": 15,
"editor.tabSize": 2,
"workbench.iconTheme": "vscode-great-icons",
"editor.minimap.enabled": true,
"editor.autoClosingBrackets": true,
"editor.minimap.maxColumn": 120,
"editor.detectIndentation": true,
"editor.renderIndentGuides": true,
"terminal.integrated.fontSize": 15,
"terminal.integrated.fontFamily": "Fira Code",
"terminal.integrated.scrollback": 1000,
"editor.scrollBeyondLastLine": false,
"files.insertFinalNewline": true,
"workbench.colorTheme": "Tomorrow Night",
"editor.formatOnPaste": true,
"editor.fontLigatures": true,
"editor.fontFamily": "Fira Code",
"editor.fontWeight": "500",
"window.zoomLevel": 1,
"workbench.editor.closeOnFileDelete": true,
//"workbench.colorCustomizations": {
//"activityBar.background": "#073642",
//"sideBar.background": "#073642"
//},
"editor.renderWhitespace": "boundary",
"workbench.editor.showTabs": true,
"workbench.startupEditor": "newUntitledFile",
"typescript.check.npmIsInstalled": false,
"extensions.ignoreRecommendations": true,
"vim.disableAnnoyingNeovimMessage": true,
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"j"
],
"after": [
"<Esc>"
]
}
],
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": [
"<leader>",
"d"
],
"after": [
"d",
"d"
]
},
{
"before": [
"<C-n>"
],
"after": [],
"commands": [
{
"command": ":nohl"
}
]
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"vim.autoindent": true,
"vim.overrideCopy": true,
"vim.searchHighlightColor": "rgba(150, 150, 255, 0.3)",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressUpdateNotice": true,
"suppressWelcomeNotice": true
}
}