Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><em><strong>edit</em></strong></p> <p>Just to be clear: upon install, Vim doesn't do anything to your home directory. The <code>~/.vim</code> directory <strong>and any subdirectory</strong> are to be created by the user: it is where <em>you</em> put <em>your</em> config so <em>you</em> are in charge.</p> <p><em><strong>endedit</em></strong></p> <p>You must create those directories yourself, no matter what OS you are using. On UNIX-like systems (Linux, Mac OS X…) all your stuff is supposed to go into <code>~/.vim</code>:</p> <pre><code>$ cd $ mkdir .vim $ cd .vim </code></pre> <p>Some plugins may need to be placed into specific subdirectories:</p> <pre><code>~/.vim/autoload ~/.vim/plugin etc. </code></pre> <p>You can:</p> <ul> <li>create those directories just like you created <code>~/.vim</code> and place all the files manually</li> <li><code>$ unzip</code> the plugins right there in <code>~/.vim</code>, the necessary directories are created for you</li> <li>use some plugin manager like Pathogen or VAM or Vundle and/or a VCS…</li> </ul> <p>I'd advise you to start slow. Just install everything manually: it will help you getting more comfortable with the whole thing.</p> <p>Anyway, since you have already installed a bunch of (useless IMO, except rails) plugins you probably already know all that.</p> <p>Vim already has the necessary ftplugins, you only need to tell Vim to "activate" them by default. Add these two lines to your <code>~/.vimrc</code> (create that file if you didn't already):</p> <pre><code>filetype plugin indent on syntax on </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload