-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode_settings.json
More file actions
44 lines (42 loc) · 1.4 KB
/
vscode_settings.json
File metadata and controls
44 lines (42 loc) · 1.4 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
{
"editor.fontSize": 18,
"editor.formatOnSave": true,
"workbench.colorTheme": "Dracula",
"latex-workshop.view.pdf.viewer": "tab",
"window.zoomLevel": 4,
"editor.cursorStyle": "block-outline",
"vim.operatorPendingModeKeyBindingsNonRecursive": [
],
"files.autoSave": "onFocusChange",
"editor.renderWhitespace": "trailing",
"files.associations": {
"\".cmake.in\"": "cmake"
},
"vim.camelCaseMotion.enable": true,
"vim.cursorStylePerMode.insert": "block-outline",
"vim.cursorStylePerMode.normal": "underline",
"vim.cursorStylePerMode.visual": "block",
"vim.cursorStylePerMode.visualblock": "block",
"vim.cursorStylePerMode.visualline": "line",
"vim.gdefault": true,
"vim.hlsearch": true,
"vim.leader": "<Space>",
"vim.replaceWithRegister": true,
"vim.showMarksInGutter": true,
"vim.smartRelativeLine": true,
"vim.sneak": true,
"vim.statusBarColorControl": true,
"vim.useSystemClipboard": true,
"vim.vimrc.enable": true,
"workbench.colorCustomizations": {
"statusBar.background": "#005f5f",
"statusBar.noFolderBackground": "#005f5f",
"statusBar.debuggingBackground": "#005f5f"
},
"cmake.configureOnOpen": true,
"workbench.iconTheme": "material-icon-theme",
"[cpp]": {
"editor.defaultFormatter": "xaver.clang-format"
},
//"editor.codeActionsOnSave": null
}