]> git.pld-linux.org Git - packages/vim.git/blame - vim-vimrc.patch
- new: 7.3.271
[packages/vim.git] / vim-vimrc.patch
CommitLineData
35973592
ER
1--- vim73/runtime/vimrc_example.vim~ 2010-05-15 14:03:57.000000000 +0300
2+++ vim73/runtime/vimrc_example.vim 2011-01-02 22:53:43.246560000 +0200
3@@ -31,6 +31,9 @@
4 set showcmd " display incomplete commands
5 set incsearch " do incremental searching
6
7+" use compressed docs, see :help gzip-helpfile
8+set helpfile=$VIMRUNTIME/doc/help.txt.gz
9+
10 " For Win32 GUI: remove 't' flag from 'guioptions': no tearoff menu entries
11 " let &guioptions = substitute(&guioptions, "t", "", "g")
12
13@@ -42,13 +45,13 @@
66e92215
ER
14 inoremap <C-U> <C-G>u<C-U>
15
16 " In many terminal emulators the mouse works just fine, thus enable it.
17-if has('mouse')
18- set mouse=a
19-endif
20+"if has('mouse')
21+" set mouse=a
22+"endif
23
24 " Switch syntax highlighting on, when the terminal has colors
25 " Also switch on highlighting the last used search pattern.
222a81c0
ER
26-if &t_Co > 2 || has("gui_running")
27+if (&t_Co > 2 || has("gui_running")) && filereadable($VIMRUNTIME."/syntax/syntax.vim")
28 syntax on
29 set hlsearch
30 endif
3550d85a 31@@ -90,7 +93,15 @@
35973592
ER
32 " Convenient command to see the difference between the current buffer and the
33 " file it was loaded from, thus the changes you made.
34 " Only define it when not defined already.
66e92215
ER
35-if !exists(":DiffOrig")
36+if v:progname =~! "vi" && !exists(":DiffOrig")
37 command DiffOrig vert new | set bt=nofile | r # | 0d_ | diffthis
38 \ | wincmd p | diffthis
39 endif
40+
f13b9023 41+" Use :help colorscheme for info
66e92215 42+"set background=dark
3550d85a
ER
43+
44+" Source a global configuration file if available
45+if filereadable("/etc/vim/vimrc.local")
46+ source /etc/vim/vimrc.local
47+endif
This page took 0.065439 seconds and 4 git commands to generate.