@@ -6,14 +6,20 @@
 | 
				
			|||||||
	// Set *default* container specific settings.json values on container create.
 | 
						// Set *default* container specific settings.json values on container create.
 | 
				
			||||||
	"settings": { 
 | 
						"settings": { 
 | 
				
			||||||
		"terminal.integrated.shell.linux": "/bin/bash",
 | 
							"terminal.integrated.shell.linux": "/bin/bash",
 | 
				
			||||||
		"lldb.executable": "/usr/bin/lldb"
 | 
							"lldb.executable": "/usr/bin/lldb",
 | 
				
			||||||
 | 
							// VS Code don't watch files under ./target
 | 
				
			||||||
 | 
							"files.watcherExclude": {
 | 
				
			||||||
 | 
								"**/target/**": true
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Add the IDs of extensions you want installed when the container is created.
 | 
						// Add the IDs of extensions you want installed when the container is created.
 | 
				
			||||||
	"extensions": [
 | 
						"extensions": [
 | 
				
			||||||
		"rust-lang.rust",
 | 
							"rust-lang.rust",
 | 
				
			||||||
		"bungcip.better-toml",
 | 
							"bungcip.better-toml",
 | 
				
			||||||
		"vadimcn.vscode-lldb"
 | 
							"vadimcn.vscode-lldb",
 | 
				
			||||||
 | 
							// (Optional) Displays the current CPU stats, memory/disk consumption, clock freq. etc. of the container host in the VS Code status bar.
 | 
				
			||||||
 | 
							"mutantdino.resourcemonitor"
 | 
				
			||||||
	],
 | 
						],
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Use 'forwardPorts' to make a list of ports inside the container available locally.
 | 
						// Use 'forwardPorts' to make a list of ports inside the container available locally.
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user