mtab a real file now
[linux_from_scratch.git] / BOOK / chapter06 / config-vim.xml
blob8c92a50635a9e1ba65e1a06be068edf8973912ab
1 <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
3 <sect2><title>Configuring Vim</title>
5 <para>By default, vim runs in vi compatible mode. Some people might like this,
6 but we have a high preference to run vim in vim mode (else we wouldn't
7 have included vim in this book, but the original vi). Create the
8 <filename>/root/.vimrc</filename> by running the following:</para>
10 <para><screen><userinput>cat &gt; /root/.vimrc &lt;&lt; "EOF"</userinput>
11 " Begin /root/.vimrc
13 set nocompatible
14 set bs=2
16 " End /root/.vimrc
17 <userinput>EOF</userinput></screen></para>
19 </sect2>