-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
124 lines (116 loc) · 3.24 KB
/
settings.json
File metadata and controls
124 lines (116 loc) · 3.24 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"code-runner.runInTerminal": true,
"security.workspace.trust.untrustedFiles": "open",
"editor.inlineSuggest.enabled": true,
"python.defaultInterpreterPath": "/Users/knoetzl/miniconda3/envs/MLVC/bin/python",
"editor.rulers": [
80
],
"editor.minimap.enabled": false,
"terminal.integrated.enableMultiLinePasteWarning": false,
"diffEditor.renderSideBySide": false,
"terminal.integrated.fontFamily": "MesloLGS NF",
"quarto.mathjax.theme": "dark",
"github.copilot.enable": {
"quarto": true,
"*": true,
"yaml": false,
"plaintext": false,
"markdown": false
},
"r.rmarkdown.enableCodeLens": true,
"r.rterm.mac": "/Users/knoetzl/miniforge3/envs/r-env/bin/radian",
"r.bracketedPaste": true,
// "workbench.colorCustomizations": {
// "activityBar.background": "#2F2B26",
// "statusBar.noFolderBackground": "#2F2B26",
// "activityBarBadge.background": "#D76538",
// "sideBar.background": "#2F2B26",
// "sideBarSectionHeader.background": "#26221E",
// "activityBar.foreground": "#afafaf",
// "statusBar.background": "#36312C",
// "statusBar.foreground": "#afafaf",
// "statusBar.debuggingForeground": "#fff",
// "editorWarning.foreground": "#F8BB39",
// "editorInfo.foreground": "#00A8C6",
// "editorError.foreground": "#D76538"
// },
"workbench.colorTheme": "Monokai Dimmed",
"files.autoSave": "onFocusChange",
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.sneak": true,
"vim.easymotionMarkerooundColor": "#020202",
"vim.normalModeKeyBindings": [
{
"before": ["<leader>", "d"],
"after": ["d", "d"]
},
{
"before": ["<tab>"],
"commands": ["workbench.action.nextEditor"]
},
{
"before": ["<S-tab>"],
"commands": ["workbench.action.previousEditor"]
},
],
"vim.visualModeKeyBindings": [
{
"before": [">"],
"after": [">", "g", "v"]
},
{
"before": ["<"],
"after": ["<", "g", "v"]
},
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "d"],
"after": ["d", "d"]
},
{
"before": ["<leader>", "w"],
"commands": ["workbench.action.splitEditor"]
},
{
"before": ["<leader>", "e"],
"commands": ["workbench.action.toggleSidebarVisibility"]
},
{
"before": ["<leader>", "f"],
"commands": ["revealInExplorer"]
},
{
"before": ["<leader>", "h"],
"after": ["_"]
},
{
"before": ["<leader>", "l"],
"after": ["$"]
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
// "<C-f>": false,
// VS Code new marker @ next occurence
"<C-c>": false,
// Cut
"<C-x>": false,
// Paste
"<C-v>": false,
"<C-z>": false,
"<C-y>": false
},
"[python]": {
"editor.formatOnType": true
},
"CodeGPT.model": "code-davinci-002",
"CodeGPT.maxTokens": 4000,
"r.plot.useHttpgd": true
}