source: postlfs/config/vimrc.xml@ bbdb0ff4

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since bbdb0ff4 was bbdb0ff4, checked in by Randy McMurchy <randy@…>, 19 years ago

Removed excess multiple spaces from the ends of lines

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@4493 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 4.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE part PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="postlfs-config-vimrc" xreflabel="The vimrc Files">
9 <?dbhtml filename="vimrc.html"?>
10
11 <sect1info>
12 <othername>$LastChangedBy$</othername>
13 <date>$Date$</date>
14 </sect1info>
15
16 <title>The /etc/vimrc and ~/.vimrc Files</title>
17
18 <indexterm zone="postlfs-config-vimrc">
19 <primary sortas="e-etc-vimrc">/etc/vimrc</primary>
20 </indexterm>
21
22 <indexterm zone="postlfs-config-vimrc">
23 <primary sortas="e-AA.vimrc">~/.vimrc</primary>
24 </indexterm>
25
26 <para>The LFS book installs <application>Vim</application>
27 as its text editor. At this point we should state that there are a
28 <emphasis>lot</emphasis> of different editing applications out there including
29 <application>Emacs</application>, <application>nano</application>,
30 <application>Joe</application> and many more. Anyone who has been around the
31 Internet (especially usenet) for a short time will certainly have observed at
32 least one flame war, usually involving <application>Vim</application> and
33 <application>Emacs</application> users!</para>
34
35 <para>The LFS book gives a basic <filename>vimrc</filename> file. Here, we
36 attempt to enhance this file. At startup, <command>vim</command> reads
37 <filename>/etc/vimrc</filename> and <filename>~/.vimrc</filename> (i.e., the
38 global <filename>vimrc</filename> and the user-specific one.). Note that this is
39 only true if you compiled <application>vim</application> using LFS-3.1 onwards.
40 Prior to this, the global <filename>vimrc</filename> was
41 <filename>/usr/share/vim/vimrc</filename>.</para>
42
43 <para>Here is a slightly expanded <filename>.vimrc</filename> that you can
44 put in <filename>~/.vimrc</filename> to provide user specific effects. Of
45 course, if you put it into <filename>/etc/skel/.vimrc</filename> instead, it
46 will be made available to users you add to the system later. You can also copy
47 the file from <filename>/etc/skel/.vimrc</filename> to the home directory of
48 users already on the system, like root. Be sure to set permissions, owner, and
49 group if you do copy anything directly from
50 <filename class="directory">/etc/skel</filename>.</para>
51
52<screen><literal>" Begin .vimrc
53
54set columns=80
55set wrapmargin=8
56set ruler
57
58" End .vimrc</literal></screen>
59
60 <para>A FAQ on the LFS mailing lists regards the comment tags in
61 <filename>vimrc</filename>. Note that they are " instead of the more
62 usual # or //. This is correct, the syntax for
63 <filename>vimrc</filename> is slightly unusual.</para>
64
65 <para>We'll run through a quick explanation of what each of the
66 options in this example file means here:</para>
67
68 <itemizedlist>
69 <!--
70 <listitem>
71 <para><option>set nocompatible</option> : This option
72 stops <command>vim</command> from behaving in a strongly <command>vi
73 </command>-compatible way. It should be at the start of any <filename>vimrc
74 </filename> file as it can affect lots of other options which you may want to
75 override.</para>
76 </listitem>
77 <listitem>
78 <para><option>set bs=2</option>: This influences the behavior
79 of the backspace option. It is fairly complex so see <command>:help 'bs'
80 </command> for more details.</para>
81 </listitem>
82 -->
83 <listitem>
84 <para><option>set columns=80</option>: This simply sets the
85 number of columns used on the screen.</para>
86 </listitem>
87 <!--
88 <listitem>
89 <para><option>set background=dark</option>: This tells
90 <command>vim</command> to use colors which look good on a dark
91 background.</para>
92 </listitem>
93 -->
94 <listitem>
95 <para><option>set wrapmargin=8</option>: This is the number of
96 characters from the right window border where wrapping starts.</para>
97 </listitem>
98 <!--
99 <listitem>
100 <para><option>syntax on</option>: Enables
101 <command>vim</command>'s syntax highlighting.</para>
102 </listitem>
103 -->
104 <listitem>
105 <para><option>set ruler</option>: This makes <command>vim</command>
106 show the current row and column at the bottom right of the screen.</para>
107 </listitem>
108 </itemizedlist>
109
110 <para>More information on the <emphasis>many</emphasis>
111 <command>vim</command> options can be found by reading the help
112 inside <command>vim</command> itself. Do this by typing
113 <command>:</command><option>help</option> in
114 <command>vim</command> to get the general help, or by typing
115 <command>:</command><option>help usr_toc.txt</option> to view
116 the User Manual Table of Contents.</para>
117
118</sect1>
119
Note: See TracBrowser for help on using the repository browser.