]> git.pld-linux.org Git - packages/vim.git/blob - vim-vimrc.patch
do not compress docs
[packages/vim.git] / vim-vimrc.patch
1 --- vim74/runtime/vimrc_example.vim~    2013-09-06 00:10:56.000000000 +0300
2 +++ vim74/runtime/vimrc_example.vim     2013-09-06 00:11:24.756404306 +0300
3 @@ -46,13 +46,13 @@ map Q gq
4  inoremap <C-U> <C-G>u<C-U>
5  
6  " In many terminal emulators the mouse works just fine, thus enable it.
7 -if has('mouse')
8 -  set mouse=a
9 -endif
10 +"if has('mouse')
11 +"  set mouse=a
12 +"endif
13  
14  " Switch syntax highlighting on when the terminal has colors or when using the
15  " GUI (which always has colors).
16 -if &t_Co > 2 || has("gui_running")
17 +if (&t_Co > 2 || has("gui_running")) && filereadable($VIMRUNTIME."/syntax/syntax.vim")
18    syntax on
19  
20    " Also switch on highlighting the last used search pattern.
21 @@ -93,10 +93,18 @@
22  " Convenient command to see the difference between the current buffer and the
23  " file it was loaded from, thus the changes you made.
24  " Only define it when not defined already.
25 -if !exists(":DiffOrig")
26 +if v:progname =~! "vi" && !exists(":DiffOrig")
27    command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis
28                   \ | wincmd p | diffthis
29  endif
30 +
31 +" Use :help colorscheme for info
32 +"set background=dark
33 +
34 +" Source a global configuration file if available
35 +if filereadable("/etc/vim/vimrc.local")
36 +  source /etc/vim/vimrc.local
37 +endif
38  
39  if has('langmap') && exists('+langnoremap')
40    " Prevent that the langmap option applies to characters that result from a
This page took 0.07755 seconds and 4 git commands to generate.