-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode_settings.json
More file actions
91 lines (84 loc) · 3 KB
/
vscode_settings.json
File metadata and controls
91 lines (84 loc) · 3 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
{
"workbench.colorCustomizations": {
// "editor.selectionBackground": "#ff8c8c", // red color hexadecimal code
"editor.selectionHighlightBorder": "#fa0303",
"editor.findMatchBackground": "#ffffffa8", //Current SEARCH MATCH
"editor.findMatchHighlightBackground": "#ff0000a1", //Other SEARCH MATCHES
// Terminal color
"terminal.integrated.cursorStyle": "line",
"terminal.background": "#1d1d1d", // your desired color
"terminal.foreground": "#ffffff", // optional: text color
"terminalCursor.background": "#FFCC00", // optional: cursor background
"terminalCursor.foreground": "#dd00008f", // optional: cursor color
"terminal.selectionBackground": "#78262e", // visual highlight background for selected text in terminal (default blue)
},
"terminal.integrated.scrollback": 5000,
"terminal.integrated.enableMultiLinePasteWarning": false,
"editor.cursorStyle": "line", // 'block', 'line', 'underline'
"editor.cursorBlinking": "smooth", // 'blink', 'smooth', 'phase', 'expand', 'solid'
"editor.cursorWidth": 2, // only applies to line cursor
"editor.renderWhitespace": "trailing",
"editor.fontSize": 12,
"editor.fastScrollSensitivity": 4,
"editor.inlayHints.enabled": "off",
"workbench.tree.indent": 21,
"explorer.confirmDragAndDrop": false,
"cursor.composer.textSizeScale": 1.15,
"git.openRepositoryInParentFolders": "never",
"jupyter.alwaysTrustNotebooks": true,
"workbench.colorTheme": "Dark Horizon",
"workbench.startupEditor": "newUntitledFile",
"liveshare.authenticationProvider": "GitHub",
"explorer.confirmDelete": false,
"[python]": {
"editor.rulers": [120]
},
"python.languageServer": "None",
"[latex]": {
"editor.wordWrap": "wordWrapColumn",
"editor.wrappingIndent": "same",
"editor.wordWrapColumn": 80
},
"latex-workshop.latex.autoBuild.run": "never",
"workbench.editorAssociations": {
"*": "default",
"*.ipynb": "jupyter-notebook",
"*.png": "imagePreview.previewEditor",
"*.jpg": "imagePreview.previewEditor",
"*.mp4": "vscode.videoPreview",
"*.pdf": "pdf.preview",
"*.gif": "imagePreview.previewEditor"
},
"includePath": [
"/opt/ros/humble/include/**",
"/usr/include/**",
"${workspaceFolder}/**"
],
"cursor.general.globalCursorIgnoreList": [
"**/.env",
"**/.env.*",
"**/credentials.json",
"**/credentials.*.json",
"**/secret.json",
"**/secrets.json",
"**/*.key",
"**/*.pem",
"**/*.pfx",
"**/*.p12",
"**/*.crt",
"**/*.cer",
"**/id_rsa",
"**/id_dsa",
"**/.ssh/id_*",
".ruff_cache/",
"**/venv/",
"**/.venv/",
"logs/"
],
"files.watcherExclude": {
"**/logs/**": true
},
"search.exclude": {
"logs/": true
},
}