I use the JetBrains IDE with a Rust plugin to run the code of Substrate.
The Substrate project usually has a line on top of a file:
#![cfg_attr(not(feature = "std"), no_std)]
However, this line is gray, now bright yellow, this line is not activated, the cfg attribute is not using now. which means the development env is still in Rust std env, I guess.
Substrate doesn't use the Rust std lib. So, I wondering is it possible to config the IDE to activate the substrate std env, but not the Rust std. This maybe useful for beginner not to include some incorrect func or lib.