Permanently change symbol of itemize

itemize

I am aware one can locally change the symbol of itemize by adding an option to \item, like:

\begin{itemize}
\item[$\uparrow$] some item
\end{itemize}

Is there a way to set permanently the symbol of itemize, for instance by redefining a command?

Something like

\setitemizesymbol{$\uparrow$]
\begin{itemize}
\item some item
\end{itemize}

Best Answer

It's easy if you load the enumitem package, adding this code in your preamble:

\setlist[itemize,1]{label=$\uparrow$}

The number 1 (second argument) denotes the level of the environment. Here, it is not nested in another itemize.