~ubuntu-branches/ubuntu/vivid/vim/vivid

« back to all changes in this revision

Viewing changes to debian/runtime/vimrc

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2008-11-05 11:37:43 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20081105113743-9i4urcsm3n44mhqe
Tags: 2:7.2.025-2ubuntu1
* Merge from debian unstable, remaining changes:
  - runtime/syntax/debcontrol.vim:
    + Add "metapackages" to the list of valid sections.
  - runtime/syntax/debchangelog.vim:
    + Add "jaunty" to the list of valid suites.
  - Drop vim-lesstif package and lesstif2-dev build-dependency.
  - Enable Python interpreter on basic builds.
  - Create a .pot file for translations.
  - Disable autoindent, line-wrapping, and backup files by default.
  - runtime/syntax/debsources.vim:
    + Add "jaunty" to debsourcesDistrKeyword
  - runtime/syntax/grub.vim:
    + Add Ubuntu-specific 'quiet' keyword.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
" Uncomment the following to have Vim jump to the last position when
27
27
" reopening a file
28
28
"if has("autocmd")
29
 
"  au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
30
 
"    \| exe "normal! g'\"" | endif
 
29
"  au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
31
30
"endif
32
31
 
33
 
" Uncomment the following to have Vim load indentation rules according to the
34
 
" detected filetype. Per default Debian Vim only load filetype specific
35
 
" plugins.
 
32
" Uncomment the following to have Vim load indentation rules and plugins
 
33
" according to the detected filetype.
36
34
"if has("autocmd")
37
 
"  filetype indent on
 
35
"  filetype plugin indent on
38
36
"endif
39
37
 
40
38
" The following are commented out as they cause vim to behave a lot
46
44
"set incsearch          " Incremental search
47
45
"set autowrite          " Automatically save before commands like :next and :make
48
46
"set hidden             " Hide buffers when they are abandoned
49
 
"set mouse=a            " Enable mouse usage (all modes) in terminals
 
47
"set mouse=a            " Enable mouse usage (all modes)
50
48
 
51
49
" Source a global configuration file if available
52
 
" XXX Deprecated, please move your changes here in /etc/vim/vimrc
53
50
if filereadable("/etc/vim/vimrc.local")
54
51
  source /etc/vim/vimrc.local
55
52
endif