-
Notifications
You must be signed in to change notification settings - Fork 20
/
vscode_settings.json
80 lines (76 loc) · 2.42 KB
/
vscode_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
{
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": true,
"editor.fontFamily": "'VictorMono Regular', OperatorMonoLig-Book, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 12,
"editor.fontLigatures": true,
"editor.matchBrackets": "near",
"editor.renderLineHighlight": "gutter",
"workbench.iconTheme": "file-icons",
"diffEditor.ignoreTrimWhitespace": true,
"diffEditor.renderSideBySide": false,
"ruby.lint": {
"rubocop": {
"useBundler": true
}
},
"ruby.useBundler": true,
"gitlens.views.repositories.location": "scm",
"gitlens.views.fileHistory.location": "scm",
"gitlens.views.lineHistory.location": "scm",
"gitlens.views.compare.location": "scm",
"gitlens.views.search.location": "scm",
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.codeLens.enabled": false,
"gitlens.statusBar.format": "${author}, ${agoOrDate} • ${message}",
"vim.useSystemClipboard": true,
"vim.vimrc.enable": false,
"vim.visualstar": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "k"],
"after": ["esc"]
}
],
"vim.normalModeKeyBindings": [
{
"before": ["<C-h>"],
"commands": ["workbench.action.focusPreviousGroup"]
},
{
"before": ["<C-l>"],
"commands": ["workbench.action.focusNextGroup"]
},
{
"before": ["<C-j>"],
"commands": ["workbench.action.focusBelowGroup"]
},
{
"before": ["<C-k>"],
"commands": ["workbench.action.focusAboveGroup"]
},
{
"before": ["<C-w>", "r"],
"commands": ["workbench.action.showAllEditorsByMostRecentlyUsed"]
},
{
"before": ["<C-w>", "|"],
"commands": ["workbench.action.splitEditorRight"]
},
{
"before": ["<C-w>", "-"],
"commands": ["workbench.action.splitEditorDown"]
}
],
"workbench.editor.enablePreview": false,
"terminal.external.osxExec": "Kitty.app",
"files.associations": {
"Makefile": "makefile"
},
"explorer.sortOrder": "mixed",
"terminal.integrated.letterSpacing": 1,
"ruby.rubocop.useBundler": true,
"workbench.colorTheme": "Catppuccin Latte"
}