summaryrefslogtreecommitdiff
path: root/app-editors/gvim/files/gvimrc-r1
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-editors/gvim/files/gvimrc-r1
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-editors/gvim/files/gvimrc-r1')
-rw-r--r--app-editors/gvim/files/gvimrc-r128
1 files changed, 0 insertions, 28 deletions
diff --git a/app-editors/gvim/files/gvimrc-r1 b/app-editors/gvim/files/gvimrc-r1
deleted file mode 100644
index 27f398c1011c..000000000000
--- a/app-editors/gvim/files/gvimrc-r1
+++ /dev/null
@@ -1,28 +0,0 @@
-scriptencoding utf-8
-" ^^ Please leave the above line at the start of the file.
-
-" Default configuration file for gvim
-"
-" 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("@GENTOO_PORTAGE_EPREFIX@/etc/vim/gvimrc.local")
- source @GENTOO_PORTAGE_EPREFIX@/etc/vim/gvimrc.local
-endif