-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
79 lines (79 loc) · 2.66 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
{
// workbench
"workbench.startupEditor": "none",
"workbench.settings.editor": "json",
"workbench.colorTheme": "Flate Arc Italic",
"workbench.productIconTheme": "icons-carbon",
"workbench.iconTheme": "catppuccin-latte",
"workbench.editor.showTabs": "none",
"workbench.activityBar.location": "top",
"workbench.layoutControl.enabled": false,
"workbench.editor.tabActionCloseVisibility": false,
"workbench.tree.renderIndentGuides": "none",
// breadcrumbs
"breadcrumbs.enabled": false,
// editor
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 16,
"editor.lineHeight": 30,
"editor.fontWeight": "500",
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"editor.cursorWidth": 2,
"editor.cursorBlinking": "phase",
"editor.fontVariations": true,
"editor.cursorSmoothCaretAnimation": "off",
"editor.wordWrap": "on",
"editor.inlineSuggest.enabled": true,
"editor.renderLineHighlight": "none",
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.horizontalScrollbarSize": 0,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.verticalScrollbarSize": 0,
"editor.scrollBeyondLastLine": false,
"editor.smoothScrolling": true,
"editor.guides.indentation": false,
// window
"window.commandCenter": false,
// explore
"explorer.compactFolders": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
// Git
"git.autofetch": true,
"files.autoSave": "afterDelay",
"files.trimTrailingWhitespace": true,
// * Terminal
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontWeight": "500",
"terminal.integrated.persistentSessionReviveProcess": "never",
"terminal.integrated.tabs.enabled": true,
"terminal.external.osxExec": "Alacritty.app",
"terminal.integrated.env.osx": {},
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.integrated.scrollback": 10000,
"terminal.integrated.fontSize": 13,
"terminal.integrated.lineHeight": 1.5,
// used by the toggle excluded files extension
"files.exclude": {
"**/.open-next": true,
"**/.sst": true,
"**/.nx": true,
"**/.turbo": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true,
"**/.husky": true,
"**/.github": true,
"**/.gitignore": true,
"**/dist": true,
"**/.next": true,
"**/*.tsbuildinfo": true,
"**/.astro": true
}
}