comparison runtime/doc/usr_05.txt @ 3967:fdb8a9c7bd91

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Wed, 28 Nov 2012 18:21:11 +0100
parents 073ff46fe397
children 6ec6b7ff2d43
comparison
equal deleted inserted replaced
3966:944440e0afcd 3967:fdb8a9c7bd91
1 *usr_05.txt* For Vim version 7.3. Last change: 2009 Jun 04 1 *usr_05.txt* For Vim version 7.3. Last change: 2012 Nov 20
2 2
3 VIM USER MANUAL - by Bram Moolenaar 3 VIM USER MANUAL - by Bram Moolenaar
4 4
5 Set your settings 5 Set your settings
6 6
47 $HOME/_vimrc ~ 47 $HOME/_vimrc ~
48 $VIM/_vimrc ~ 48 $VIM/_vimrc ~
49 49
50 The vimrc file can contain all the commands that you type after a colon. The 50 The vimrc file can contain all the commands that you type after a colon. The
51 most simple ones are for setting options. For example, if you want Vim to 51 most simple ones are for setting options. For example, if you want Vim to
52 always start with the 'incsearch' option on, add this line you your vimrc 52 always start with the 'incsearch' option on, add this line your vimrc file: >
53 file: >
54 53
55 set incsearch 54 set incsearch
56 55
57 For this new line to take effect you need to exit Vim and start it again. 56 For this new line to take effect you need to exit Vim and start it again.
58 Later you will learn how to do this without exiting Vim. 57 Later you will learn how to do this without exiting Vim.