]> Frank Brehm's Git Trees - config/bruni/etc.git/commitdiff
committing changes in /etc after emerge run
authorfrank <frank@bruni.home.brehm-online.com>
Mon, 16 Jan 2012 17:26:33 +0000 (18:26 +0100)
committerFrank Brehm <root@bruni.home.brehm-online.com>
Mon, 16 Jan 2012 17:26:33 +0000 (18:26 +0100)
Package changes:
+app-editors/gvim-7.3.266

.etckeeper
vim/gvimrc [new file with mode: 0644]

index 6a2829a0019b2c618899a6d414e028aeed9a031a..f36ea5c1e951f676801e8cef7490c3f47670f31a 100755 (executable)
@@ -1102,6 +1102,7 @@ maybe chmod 0644 './unixODBC/odbc.ini'
 maybe chmod 0644 './unixODBC/odbcinst.ini'
 maybe chmod 0644 './updatedb.conf'
 maybe chmod 0755 './vim'
+maybe chmod 0644 './vim/gvimrc'
 maybe chmod 0644 './vim/vimrc'
 maybe chmod 0644 './vim/vimrc.local'
 maybe chmod 0644 './wgetrc'
diff --git a/vim/gvimrc b/vim/gvimrc
new file mode 100644 (file)
index 0000000..b1c2ff1
--- /dev/null
@@ -0,0 +1,29 @@
+scriptencoding utf-8
+" ^^ Please leave the above line at the start of the file.
+
+" Default configuration file for gvim
+" $Header: /var/cvsroot/gentoo-x86/app-editors/gvim/files/gvimrc-r1,v 1.2 2010/04/15 19:49:14 darkside Exp $
+"
+" Written by Aron Griffis <agriffis@gentoo.org>
+"
+" This file is read AFTER normal Vim initializations, like reading your .vimrc
+" file (and the default /usr/share/vim/vimrc).  So there's no reason to
+" duplicate settings from vimrc.  Red Hat has had this wrong for years, to the
+" great annoyance of users.
+
+" Pre-GUI settings
+set columns=80 lines=30       " don't inherit geometry from parent term
+set mousemodel=popup          " right mouse button pops up a menu in the GUI
+
+" Use a sufficiently wide window automatically when started as "gvimdiff"
+if (&foldmethod == 'diff')
+       set columns=165
+endif
+
+" For bug 33327, add a mapping which allows shift-insert to function
+" as expected in insert and command-line modes
+map! <s-insert> <c-r>*
+
+if filereadable("/etc/vim/gvimrc.local")
+  source /etc/vim/gvimrc.local
+endif