-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
51 lines (46 loc) · 1.71 KB
/
settings.json
File metadata and controls
51 lines (46 loc) · 1.71 KB
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
{
// editor
"editor.tabSize": 2,
"editor.formatOnPaste": true,
"editor.cursorBlinking": "expand",
"editor.mouseWheelZoom": false,
"editor.cursorSmoothCaretAnimation": true,
"editor.lineHeight": 19,
// eslint
"eslint.alwaysShowStatus": true,
// javascript
"javascript.updateImportsOnFileMove.enabled": "always",
// files
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.autoSave": "onWindowChange",
// terminal and workbench
"workbench.editor.highlightModifiedTabs": true,
"workbench.colorCustomizations": {
"terminal.background": "#242627",
"terminal.foreground": "#FFF",
"terminalCursor.background": "#b403b4",
"terminalCursor.foreground": "#28f7b5",
"terminal.ansiBlue": "#e0c781", // directory structure
"terminal.ansiYellow": "#d84f4f", // git unstaged changes branch
"terminal.ansiGreen": "#1cadda", // git staged changes branch
"terminal.ansiBlack": "#530c41", // user but change color letter as well
// "terminal.ansiBrightBlack":"#665C54",
// "terminal.ansiBrightBlue":"#0D6678",
// "terminal.ansiBrightCyan":"#a58c8b",
// "terminal.ansiBrightGreen":"#95C085",
// "terminal.ansiBrightMagenta":"#8F4673",
// "terminal.ansiBrightRed":"#FB543F",
// "terminal.ansiBrightWhite":"#FDF4C1",
// "terminal.ansiBrightYellow":"#fa3b3b",
// "terminal.ansiCyan":"#8BA59B",
// "terminal.ansiMagenta":"#8F4673",
// "terminal.ansiRed":"#FB543F",
// "terminal.ansiWhite":"#A89984",
},
"terminal.integrated.automationShell.linux": "/usr/local/bin/zsh",
"terminal.integrated.fontFamily": "'Meslo LG S for Powerline'",
//others
"explorer.openEditors.visible": 0,
}