forked from jakuboczkowskirwm/vimrc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
58 lines (58 loc) · 1.45 KB
/
settings.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"workbench.colorTheme": "Monokai Pro (Filter Machine)",
"editor.rulers": [
120,
],
"editor.minimap.enabled": false,
"files.autoSave": "afterDelay",
"editor.suggestSelection": "first",
"terminal.integrated.fontSize": 16,
"editor.fontFamily": "Monaco",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.mouseWheelZoom": true,
"editor.tabSize": 2,
"editor.fontSize": 16,
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-w>": false,
"<C-b>": false,
},
"window.zoomLevel": -1,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "f"],
"commands": ["actions.find"]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "f"],
"commands": ["actions.find"]
}
],
"editor.quickSuggestionsDelay": 0,
"ruby.intellisense": "rubyLocate",
"workbench.iconTheme": "material-icon-theme",
"editor.lineNumbers": "relative",
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.hg/store/**": true,
"**/tmp/**": true,
"**/vendor/**": true
}
}