-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
66 lines (63 loc) · 3.08 KB
/
settings.json
File metadata and controls
66 lines (63 loc) · 3.08 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
// === Visuals ===
"editor.fontFamily": "Fira Code, JetBrains Mono, monospace",
"editor.fontLigatures": true,
"editor.lineNumbers": "relative",
"editor.rulers": [80],
"editor.wordWrap": "on",
"editor.cursorSurroundingLines": 8,
"editor.cursorSurroundingLinesStyle": "all",
"editor.minimap.enabled": false,
"files.trimTrailingWhitespace": true,
"files.autoSave": "off",
"explorer.confirmDelete": false,
"vim.enableNeovim": false,
"vim.useSystemClipboard": false,
"vim.useCtrlKeys": true,
"vim.leader": "<space>",
"vim.normalModeKeyBindingsNonRecursive": [
{ "before": ["<leader>", "p", "f"], "commands": ["workbench.action.quickOpen"] },
{ "before": ["<leader>", "w"], "commands": ["workbench.action.files.save"] },
{ "before": ["<leader>", "y"], "commands": ["editor.action.clipboardCopyAction"] },
{ "before": ["<leader>", "Y"], "commands": ["editor.action.clipboardCopyAction"] },
{ "before": ["<leader>", "d"], "after": ["\"", "_", "d"] },
{ "before": ["<leader>", "v", "r", "r"], "commands": ["editor.action.referenceSearch.trigger"] },
{ "before": ["<leader>", "v", "c", "a"], "commands": ["editor.action.quickFix"] },
{ "before": ["<leader>", "v", "r", "n"], "commands": ["editor.action.rename"] },
{ "before": ["<leader>", "v", "w", "s"], "commands": ["workbench.action.showAllSymbols"] },
{ "before": ["<leader>", "v", "d"], "commands": ["editor.action.showHover"] },
{ "before": ["<leader>", "f"], "commands": ["editor.action.formatDocument"] },
{ "before": ["<leader>", "j"], "commands": ["editor.action.marker.prevInFiles"] },
{ "before": ["<leader>", "k"], "commands": ["editor.action.marker.nextInFiles"] },
{ "before": ["g", "d"], "commands": ["editor.action.revealDefinition"] },
{ "before": ["g", "h"], "commands": ["editor.action.showHover"] },
{ "before": ["Q"], "commands": [] },
{ "before": ["<C-d>"], "after": ["<C-d>", "z", "z"] },
{ "before": ["<C-u>"], "after": ["<C-u>", "z", "z"] },
{ "before": ["n"], "after": ["n", "z", "z", "z", "v"] },
{ "before": ["N"], "after": ["N", "z", "z", "z", "v"] },
{ "before": ["[", "d"], "commands": ["editor.action.marker.next"] },
{ "before": ["]", "d"], "commands": ["editor.action.marker.prev"] }
],
"vim.visualModeKeyBindingsNonRecursive": [
{ "before": ["J"], "commands": ["editor.action.moveLinesDownAction"] },
{ "before": ["K"], "commands": ["editor.action.moveLinesUpAction"] },
{ "before": ["<leader>", "p"], "commands": ["editor.action.clipboardPasteAction"] },
{ "before": ["<leader>", "y"], "commands": ["editor.action.clipboardCopyAction"] },
{ "before": ["<leader>", "d"], "after": ["\"", "_", "d"] }
],
"workbench.colorTheme": "Kanagawa",
"window.enableMenuBarMnemonics": false,
"terminal.integrated.allowMnemonics": false,
"window.titleBarStyle": "custom",
"window.customMenuBarAltFocus": false,
"editor.semanticHighlighting.enabled": true,
"explorer.confirmDragAndDrop": false,
"editor.accessibilitySupport": "off",
"vim.foldfix": true,
"vim.surround": true,
"codeium.enableConfig": {
"*": true,
"markdown": true
},
}