Right now I've got commands defined in my preamble that abbreviate \mathbf. For example, instead of writing \mathbf{F} every time I want to write F, I've simply defined a new command \def\F{\ensuremath{\mathbf{F}}} so I can write F more easily as \F.
Thing is, I'm doing this for lots of letters and it would be much nicer if I could cover the whole alphabet in one or two commands.
So is there something like \def\[lowercase]{\ensuremath{\mathbf{[lowercase]}}} where whenever I write \ followed by a lowercase letter it will compile that lowercase letter in bold?
It's not really a big deal having several similar commands in the preamble as I can just copy and paste and change accordingly, but it would be nice to have something more concise.
Thanks in advance for the help.

\newcommand\vc{\mathbf}and\vc Fisn't much longer than\vFyou could aso of course use (U+1D405) – David Carlisle Jun 26 '22 at 19:20