-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
93 lines (93 loc) · 3.57 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
{
"C_Cpp.default.macFrameworkPath": [
"/System/Library/Frameworks",
"/Library/Frameworks"
],
"Lua.telemetry.enable": true,
"arduino.additionalUrls": "",
"arduino.commandPath": "$HOME/bin/run-",
"debug.console.fontFamily": "InputMono Nerd Font",
"editor.autoClosingOvertype": "always",
"editor.bracketPairColorization.enabled": true,
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": true,
"editor.cursorStyle": "block",
"editor.cursorSurroundingLines": 5,
"editor.cursorSurroundingLinesStyle": "all",
"editor.fontFamily": "InputMono Nerd Font, Consolas, 'Courier New', monospace",
"editor.fontSize": 16,
"editor.guides.bracketPairs": "active",
"editor.inlineHints.fontFamily": "InputMono Nerd Font, Consolas, 'Courier New', monospace",
"editor.lineHeight": 18,
"editor.minimap.enabled": false,
"editor.roundedSelection": false,
"editor.semanticHighlighting.enabled": true,
"editor.smoothScrolling": true,
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"editor.wordWrap": "on",
"files.autoSave": "afterDelay",
"files.exclude": {
"**/.classpath": true,
"**/.factorypath": true,
"**/.project": true,
"**/.settings": true
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"git.mergeEditor": true,
"gitlens.defaultDateFormat": "YYYY-MM-DD HH:mm:ss",
"gitlens.defaultDateShortFormat": "YYYY-MM-DD",
"gitlens.defaultDateStyle": "absolute",
"gitlens.views.repositories.files.layout": "list",
"go.useLanguageServer": true,
"hexeditor.columnWidth": 16,
"hexeditor.defaultEndianness": "little",
"hexeditor.inspectorType": "aside",
"hexeditor.showDecodedText": true,
"processing.path": "",
"processing.py.isEnabled": false,
"processing.shouldGiveDiagnostics": true,
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.pythonPath": "/usr/local/bin/python3",
"remote.SSH.showLoginTerminal": true,
"svg.preview.mode": "svg",
"terminal.external.osxExec": "Hyper.app",
"terminal.integrated.bellDuration": 0,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "underline",
"terminal.integrated.defaultProfile.windows": "Ubuntu-22.04 (WSL)",
"terminal.integrated.fontSize": 13,
"terminal.integrated.gpuAcceleration": "on",
"terminal.integrated.lineHeight": 0.94,
"terminal.integrated.macOptionIsMeta": true,
"terminal.integrated.scrollback": 50000,
"terminal.integrated.shell.osx": "zsh",
"terminal.integrated.shellIntegration.enabled": true,
"terminal.integrated.shellIntegration.history": 999,
"vim.cursorStylePerMode.replace": "block-outline",
"vim.cursorStylePerMode.visual": "block",
"vim.normalModeKeyBindingsNonRecursive": [
{ "after": [ "0" ], "before": [ "^" ] },
{ "after": [ "^" ], "before": [ "0" ] }
],
"vim.statusBarColorControl": true,
"vim.statusBarColors.insert": "#AFD70088",
"vim.statusBarColors.normal": "#6483A0",
"vim.statusBarColors.replace": "#F2201F77",
"vim.statusBarColors.visual": "#D78700",
"vim.statusBarColors.visualblock": "#D78700",
"vim.statusBarColors.visualline": "#D78700",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.nativeFullScreen": false,
"workbench.colorCustomizations": {
"statusBar.background": "#6483A0",
"statusBar.debuggingBackground": "#6483A0",
"statusBar.noFolderBackground": "#6483A0"
},
"workbench.commandPalette.history": 99999,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.sideBar.location": "right"
}