-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
63 lines (60 loc) · 1.39 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
{
"window.zoomLevel": 2,
"terminal.integrated.inheritEnv": false,
"editor.lineNumbers": "relative",
// Vim config
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "k"],
"after": ["<Esc>"]
},
{
"before": ["<C-h>"],
"after": ["<C-o>", "h"]
},
{
"before": ["<C-l>"],
"after": ["<C-o>", "l"]
},
{
"before": ["<C-g>"],
"after": ["<C-h>"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "q"],
"commands": ["workbench.action.closeActiveEditor"]
},
{
"before": ["<leader>", "w"],
"commands": ["workbench.action.splitEditor"]
},
{
"before": ["<leader>", "t"],
"commands": ["workbench.action.toggleSidebarVisibility"]
},
{
"before": ["<leader>", "f"],
"commands": [ "revealInExplorer" ],
},
{
"before": ["<C-n>"],
"commands": [":nohl"]
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
// Theme
"workbench.colorTheme": "Gruvbox Dark Hard",
//Python Docstrings
"autoDocstring.docstringFormat": "sphinx"
}