" Normally we use vim-extensions. If you want true vi-compatibility " remove change the following statements set nocompatible " Use Vim defaults instead of 100% vi compatibility set backspace=indent,eol,start " more powerful backspacing " Now we set some defaults for the editor set autoindent " always set autoindenting on set textwidth=0 " Don't wrap words by default set nobackup " Don't keep a backup file set viminfo='50,\"500 " read/write a .viminfo file, don't store more than " 50 lines of registers set history=50 " keep 50 lines of command line history set ruler " show the cursor position all the time "set noerrorbells " do not beep "set noeb vb t_vb= "set vb t_vb= " Suffixes that get lower priority when doing tab completion for filenames. " These are files we are not likely to want to edit or read. set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc " We know xterm-debian is a color terminal if &term =~ "xterm-debian" || &term =~ "xterm-xfree86" set t_Co=16 set t_Sf=[3%dm set t_Sb=[4%dm endif " Make p in Visual mode replace the selected text with the "" register. vnoremap p :let current_reg = @"gvdi=current_reg " Vim5 and later versions support syntax highlighting. Uncommenting the next " line enables syntax highlighting by default. syntax on " Debian uses compressed helpfiles. We must inform vim that the main " helpfiles is compressed. Other helpfiles are stated in the tags-file. set helpfile=$VIMRUNTIME/doc/help.txt.gz if has("autocmd") " Enabled file type detection " Use the default filetype settings. If you also want to load indent files " to automatically do language-dependent indenting add 'indent' as well. filetype plugin on endif " has ("autocmd") " Some Debian-specific things augroup filetype au BufRead reportbug.* set ft=mail au BufRead reportbug-* set ft=mail augroup END " The following are commented out as they cause vim to behave a lot " different from regular vi. They are highly recommended though. "set showcmd " Show (partial) command in status line. set showmatch " Show matching brackets. "set ignorecase " Do case insensitive matching set incsearch " Incremental search set autowrite " Automatically save before commands " like :next and :make set confirm " potvrzovani voleb " Don't use Ex mode, use Q for formatting map Q gq " par klaves pro programovani map :wa imap :wa map :make imap :make map :make:!./.launch imap :make:!./.launch " buffery map :bn map :bp imap :bn imap :bp " buffery na tech divnejch tlacitkach " nad sipkama co mam jako F34 a F35 map :bn map :bp imap :bn imap :bp map :buf 1 map :buf 2 map :buf 3 map :buf 4 map :buf 5 map :buf 6 map :buf 7 map :buf 8 "map :buf 9 "map :buf 10 imap :buf 1 imap :buf 2 imap :buf 3 imap :buf 4 imap :buf 5 imap :buf 6 imap :buf 7 imap :buf 8 "imap :buf 9 "imap :buf 10 " hezci zalamovani set wrap set linebreak set showbreak==> " scrollovani set scrolloff=7 " par zkratek pro HTML imap   " skocime na posledni pozici autocmd BufReadPost * if line("'\"") | exe "'\"" | endif