summaryrefslogtreecommitdiff
path: root/libre/vim-runtime/parabola.vim
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-10-25 01:12:02 -0200
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-10-25 01:12:02 -0200
commitb3cedc09a28eca46748c05164c5d94afdd27859c (patch)
treee5be5f5fcd8beb6cfba6642f14f1c93cb681e083 /libre/vim-runtime/parabola.vim
parentba824a6b4bc95e16bffff98187018c0d07ba858a (diff)
downloadabslibre-b3cedc09a28eca46748c05164c5d94afdd27859c.tar.gz
abslibre-b3cedc09a28eca46748c05164c5d94afdd27859c.tar.bz2
abslibre-b3cedc09a28eca46748c05164c5d94afdd27859c.zip
vim-runtime-7.4.16-2.1: upgrade revision and add mips64el support on arch line
Diffstat (limited to 'libre/vim-runtime/parabola.vim')
-rw-r--r--libre/vim-runtime/parabola.vim27
1 files changed, 27 insertions, 0 deletions
diff --git a/libre/vim-runtime/parabola.vim b/libre/vim-runtime/parabola.vim
new file mode 100644
index 000000000..bc3c1f82e
--- /dev/null
+++ b/libre/vim-runtime/parabola.vim
@@ -0,0 +1,27 @@
+" The Parabola GNU/Linux-libre global vimrc - setting only a few sane defaults
+"
+" Maintainer: Tobias Kieslich [tobias funnychar archlinux dot org]
+" Maintainer for Parabola rebranding: André Silva [emulatorman funnychar parabola dot 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
+
+
+if has('gui_running')
+ " Make shift-insert work like in Xterm
+ map <S-Insert> <MiddleMouse>
+ map! <S-Insert> <MiddleMouse>
+endif