2

I saw a tutorial on using VIM and I was curious how the user actually added a couple plugins without opening the content of the MACVIM app, but instead by going to the folder plugin using the command "~/.VIM" As seen here: http://www.youtube.com/watch?v=Dmv6-dguS3g&feature=player_embedded#at=70

I'm not really sure how everyone is able to do this. Thanks for the help.

1 Answers1

4

~/.vim is not a command, but a hidden folder.

Open Terminal and enter

mkdir .vim

to create it, if it doesn't exist yet. To go there, switch to Finder and press Cmd-Shift-G, and enter ~/.vim.


See this question regarding displaying hidden files in Finder. Or you can just press Cmd-Shift-. in any open/save file dialog to see hidden files and folders.


I don't know if you need to configure Vim to use that folder, but it doesn't look like it.

Daniel Beck
  • 111,893