I want to remove the solid colour background behind all the folder names in vscode. This picture shows the terminal window
CodePudding user response:
Assuming you are using Linux, you can completely remove colors:
cd /
vim ~/.bashrc
- Click 'i' for insert.
- Scroll to
force_color_prompt=yes
, and comment it out like this#force_color_prompt=yes
- Hit Esc. Then Colon. Type "wq" and enter to save.
Or, remove solid background only:
dircolors -p | sed 's/;42/;01/' > ~/.dircolors
Then update the terminal so changes take effect:source ~/.bashrc
Done!