Why the alias
alias vim= 'mvim -m'
is generating this error:
-bash: alias: mvim -v: not found
?
Remove the space after the = sign from your alias definition. Write alias vim='mvim -m'
. It should work.
Check this answer also for a detailed explanation.