diff options
Diffstat (limited to 'chapter06/vim.xml')
-rw-r--r-- | chapter06/vim.xml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/chapter06/vim.xml b/chapter06/vim.xml index 6b06c01f1..fa2bad722 100644 --- a/chapter06/vim.xml +++ b/chapter06/vim.xml @@ -128,9 +128,13 @@ done</userinput></screen> <screen><userinput>cat > /etc/vimrc << "EOF" <literal>" Begin /etc/vimrc +" Ensure defaults are set before customizing settings, not after +source $VIMRUNTIME/defaults.vim +let skip_defaults_vim=1 + set nocompatible set backspace=2 -set mouse=r +set mouse= syntax on if (&term == "xterm") || (&term == "putty") set background=dark @@ -138,9 +142,7 @@ endif " End /etc/vimrc</literal> -EOF - -touch ~/.vimrc</userinput></screen> +EOF</userinput></screen> <para>The <parameter>set nocompatible</parameter> setting makes <command>vim</command> behave in a more useful way (the default) than the @@ -148,18 +150,18 @@ touch ~/.vimrc</userinput></screen> <command>vi</command> behavior. The <parameter>set backspace=2</parameter> setting allows backspacing over line breaks, autoindents, and the start of insert. The <parameter>syntax on</parameter> parameter enables vim's syntax - highlighting. The <parameter>set mouse=r</parameter> setting enables + highlighting. The <parameter>set mouse=</parameter> setting enables proper pasting of text with the mouse when working in chroot or over a remote connection. Finally, the <emphasis>if</emphasis> statement with the <parameter>set background=dark</parameter> setting corrects <command>vim</command>'s guess about the background color of some terminal emulators. This gives the highlighting a better color scheme for use on the black background of these programs.</para> - +<!-- <para>Creating an empty <filename>~/.vimrc</filename> prevents vim from overriding settings in <filename>/etc/vimrc</filename> by using <filename>/usr/share/vim/vim80/defaults.vim</filename>.</para> - +--> <para>Documentation for other available options can be obtained by running the following command:</para> |