Reputation: 3296
Right now I have to go to a terminal and type: "mvim -y &".
I want to be able to launch MacVim with -y option enabled even when clicking on the .app icon or when launching it through the "Open with..." context menu.
I know about the gvimrc and vimrc files under MacVim.app/Contents/Resources/vim, so I just need someone to tell me what to add in which file.
Thanks a lot.
Upvotes: 0
Views: 213
Reputation: 1717
I believe you should be able to add set insertmode
to either your .vimrc or .gvmirc files.
If you are setting this because it is your personal preference, you might consider adding the line to the .gvim file in your home directory instead. Modifying the configuration of the application it's self would probably affect other users on the machine.
Upvotes: 1