I am using zsh on Mac and noticed that whenever I start vim, it always starts in insert mode. I use vim to inspect files more often than to edit. I tried adding set noinsertmode but it didn't have any effect.
How can I switch to normal mode upon start?
vim -u NONEorvim -u DEFAULTSorvim --clean, you probably have a configuration issue. It could also be a parameter or alias, as mentioned. – D. Ben Knoble Mar 09 '21 at 14:41vimstarts in NORMAL mode. Thanks! – minerals Mar 09 '21 at 14:51