Added logwatch
[puppet-dbp.git] / files / vimrc.sarge
blob1cd48892856c2258a523d13b98a63d6fbf60f252
1 " All system-wide defaults are set in $VIMRUNTIME/debian.vim (usually just
2 " /usr/share/vim/vimcurrent/debian.vim) and sourced by the call to :runtime
3 " you can find below.  If you wish to change any of those settings, you should
4 " do it in this file (/etc/vim/vimrc), since debian.vim will be overwritten
5 " everytime an upgrade of the vim packages is performed.  It is recommended to
6 " make changes after sourcing debian.vim since it alters the value of the
7 " 'compatible' option.
9 " This line should not be removed as it ensures that various options are
10 " properly set to work with the Vim-related packages available in Debian.
11 runtime! debian.vim
13 " Uncomment the next line to make Vim more Vi-compatible
14 " NOTE: debian.vim sets 'nocompatible'.  Setting 'compatible' changes numerous
15 " options, so any other options should be set AFTER setting 'compatible'.
16 "set compatible
18 " Vim5 and later versions support syntax highlighting. Uncommenting the next
19 " line enables syntax highlighting by default.
20 syntax on
22 " If using a dark background within the editing area and syntax highlighting
23 " turn on this option as well
24 set background=dark
26 " Uncomment the following to have Vim load indentation rules according to the
27 " detected filetype. Per default Debian Vim only load filetype specific
28 " plugins.
29 if has("autocmd")
30   filetype indent on
31 endif
33 " The following are commented out as they cause vim to behave a lot
34 " differently from regular Vi. They are highly recommended though.
35 set showcmd             " Show (partial) command in status line.
36 set showmatch           " Show matching brackets.
37 set ignorecase          " Do case insensitive matching
38 set smartcase           " Do smart case matching
39 set incsearch           " Incremental search
40 set autowrite           " Automatically save before commands like :next and :make
41 "set hidden             " Hide buffers when they are abandoned
42 "set mouse=a            " Enable mouse usage (all modes) in terminals
44 " Source a global configuration file if available
45 " XXX Deprecated, please move your changes here in /etc/vim/vimrc
46 "if filereadable("/etc/vim/vimrc.local")
47 "  source /etc/vim/vimrc.local
48 "endif
50 set ts=3