summaryrefslogtreecommitdiff
path: root/libre/vim-runtime-parabola/parabola.vim
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-02 07:27:51 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-02 07:28:13 -0300
commitb390c75967aa6e7dc67aaf488d980f692d9a6a8d (patch)
tree33f0e07c2a1b13d86b65dbc87394e24cea2fd97c /libre/vim-runtime-parabola/parabola.vim
parentfcce4e670cd2d81990b3f50e8a682b44d40a73cc (diff)
downloadabslibre-b390c75967aa6e7dc67aaf488d980f692d9a6a8d.tar.gz
abslibre-b390c75967aa6e7dc67aaf488d980f692d9a6a8d.tar.bz2
abslibre-b390c75967aa6e7dc67aaf488d980f692d9a6a8d.zip
vim-runtime: remove parabola suffix, add complex pkgrel and add vim-runtime in provides array with the same pkgrel than Arch to solve requirements of the vim packages
Diffstat (limited to 'libre/vim-runtime-parabola/parabola.vim')
-rw-r--r--libre/vim-runtime-parabola/parabola.vim26
1 files changed, 0 insertions, 26 deletions
diff --git a/libre/vim-runtime-parabola/parabola.vim b/libre/vim-runtime-parabola/parabola.vim
deleted file mode 100644
index 3db882946..000000000
--- a/libre/vim-runtime-parabola/parabola.vim
+++ /dev/null
@@ -1,26 +0,0 @@
-" The Parabola GNU/Linux-libre global vimrc - setting only a few sane defaults
-"
-" Maintainer: Thomas Dziedzic [gostrc@gmail.com]
-" Maintainer for Parabola rebranding: André Silva [emulatorman@parabola.nu]
-"
-" NEVER EDIT THIS FILE, IT'S OVERWRITTEN UPON UPGRADES, GLOBAL CONFIGURATION
-" SHALL BE DONE IN /etc/vimrc, USER SPECIFIC CONFIGURATION IN ~/.vimrc
-
-" Normally we use vim-extensions. If you want true vi-compatibility
-" remove change the following statements
-set nocompatible " Use Vim defaults instead of 100% vi compatibility
-set backspace=indent,eol,start " more powerful backspacing
-
-" Now we set some defaults for the editor
-set history=50 " keep 50 lines of command line history
-set ruler " show the cursor position all the time
-
-" Suffixes that get lower priority when doing tab completion for filenames.
-" These are files we are not likely to want to edit or read.
-set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc,.png,.jpg
-
-if has('gui_running')
- " Make shift-insert work like in Xterm
- map <S-Insert> <MiddleMouse>
- map! <S-Insert> <MiddleMouse>
-endif