I tend to use the \mathbb{...} command a lot, so I have made some commands to ease the amount of typing I have to do when I use LaTeX:
\newcommand{\R}{\ensuremath{\mathbb{R}}}
\newcommand{\C}{\ensuremath{\mathbb{C}}}
\newcommand{\Z}{\ensuremath{\mathbb{Z}}}
\newcommand{\Q}{\mathbb{Q}}
\newcommand{\N}{\mathbb{N}}
\newcommand{\F}{\mathbb{F}}
\newcommand{\W}{\mathbb{W}}
Up until this point, I have been simply copying and pasting these lines each time I begin working with a new file. What is the recommended way of importing these lines from say, a custom-made package? Is this generally recommended (i.e. making shortcuts like this)?
I'm currently using TexLive on Mac OS X.