-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.json
75 lines (74 loc) · 2.1 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
{
// editor
"editor.fontFamily": "Lilex Nerd Font",
"editor.fontSize": 20,
"editor.lineHeight": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.fontWeight": "500",
"editor.minimap.enabled": false,
"editor.fontLigatures": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.smoothScrolling": true,
// workbench
"workbench.colorTheme": "Everforest Dark",
"workbench.settings.editor": "json",
"workbench.iconTheme": "material-icon-theme",
"workbench.statusBar.visible": false, // bottom status bar hide
"workbench.activityBar.location": "top", // activity bar location top
// explorer
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
// git | project manager
"projectManager.git.baseFolders": ["$home/workspace"],
"projectManager.sortList": "Recent",
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.autofetch": true,
// Terminal
"terminal.integrated.fontFamily": "Lilex Nerd Font",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.fontSize": 19,
"terminal.integrated.fontWeight": "normal",
// vim
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "k"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "d"],
"after": ["d", "d"]
},
{
"before": ["<C-n>"],
"commands": [":nohl"]
},
{
"before": ["K"],
"commands": ["lineBreakInsert"],
"silent": true
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"[java, python, javascript, c]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.integrated.defaultProfile.osx": "bash",
"window.menuBarVisibility": "compact",
"window.commandCenter": false,
"workbench.layoutControl.enabled": false,
"window.customTitleBarVisibility": "windowed"
}