How do you convert all text in Vim to lowercase? Is it even possible?
use this command mode option
ggguG gg - Goto the first line g - start to converting from current line u - Convert into lower case for all characters G - To end of the file.