I like a particular description alignment:
- The label aligned to the right
- The description aligned to the left
In LaTeX I have been doing it manually, so I'd like to configure the description environment to do this. Any one has a tip?
\documentclass{article}
\usepackage{enumitem}
\begin{document}
I'd like a description alignment like this:
\begin{tabular}{rl}
\textbf{E1:} & Example item 1 \\
\textbf{Long E2:} & Example item 2 \\
\textbf{Long long E3:} & Example item 3 \\
\end{tabular}
How to do it with description environment
or enumitem settings?
\end{document}

