bump tor to newer version, fixes #3472, thanks Wlanman
[openwrt/svn-archive/archive.git] / utils / vim / files / vimrc.full
1 set showcmd " Show (partial) command in status line.
2 set showmatch " Show matching brackets.
3 set ignorecase " Do case insensitive matching
4 set incsearch " Incremental search
5 set autowrite " Automatically save before commands like :next
6 and :make
7 set nocompatible " Use Vim defaults instead of 100% vi compatibility
8 set backspace=indent,eol,start " more powerful backspacing
9 set autoindent " always set autoindenting on
10 set linebreak " Don't wrap words by default
11 set textwidth=0 " Don't wrap lines by default
12 set ruler " show the cursor position all the time
13 if has('syntax') && &term =~ "xterm"
14 if has("terminfo")
15 set t_Co=8
16 set t_Sf=<Esc>[3%p1%dm
17 set t_Sb=<Esc>[4%p1%dm
18 else
19 set t_Co=8
20 set t_Sf=<Esc>[3%dm
21 set t_Sb=<Esc>[4%dm
22 endif
23 syn on