File: debian.vim.in

package info (click to toggle)
vim 1%3A7.0-122%2B1etch5
  • links: PTS
  • area: main
  • in suites: etch
  • size: 9,992 kB
  • ctags: 55
  • sloc: makefile: 444; sh: 224; perl: 97; python: 25
file content (69 lines) | stat: -rw-r--r-- 2,459 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69

" Debian system-wide default configuration Vim

set runtimepath=~/.vim,/var/lib/vim/addons,/usr/share/vim/addons,/usr/share/vim/vimfiles,/usr/share/vim/@VIMCUR@,/usr/share/vim/vimfiles/after,/usr/share/vim/addons/after,/var/lib/vim/addons/after,~/.vim/after

" Normally we use vim-extensions. If you want true vi-compatibility
" remove change the following statements
if exists('g:debian_cp')  " vim-tiny was started as vi. don't set remaining options
else
  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 linebreak		" Don't wrap words by default
  set textwidth=0		" Don't wrap lines by default
  set viminfo='20,\"50	" 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

  " 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

  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
  if has("autocmd")
    " set mail filetype for reportbug's temp files
    augroup debian
      au BufRead reportbug.*		set ft=mail
      au BufRead reportbug-*		set ft=mail
    augroup END
  endif

  " Set paper size from /etc/papersize if available (Debian-specific)
  if filereadable("/etc/papersize")
    try
      let s:shellbak = &shell
      let &shell="/bin/sh"
      let s:papersize = matchstr(system("cat /etc/papersize"), "\\p*")
      let &shell=s:shellbak
      if strlen(s:papersize)
        let &printoptions = "paper:" . s:papersize
      endif
    catch /^Vim\%((\a\+)\)\=:E145/
    endtry
  endif

  if has('gui_running')
    " Make shift-insert work like in Xterm
    map <S-Insert> <MiddleMouse>
    map! <S-Insert> <MiddleMouse>
  endif
endif