summaryrefslogtreecommitdiffstats
path: root/vim/archlinux.vim
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@server-speed.net>2011-02-06 20:37:35 +0100
committerFlorian Pritz <bluewind@server-speed.net>2011-02-06 20:37:35 +0100
commit9f140581e08b255697a4d824ac57559a04c416e0 (patch)
tree89ad82ae13c3028c1f6d5e188d71a30dcb76ebff /vim/archlinux.vim
parentae04b18175c5b37bfe8758f8ecec59f486586e7e (diff)
downloadaur-packages-9f140581e08b255697a4d824ac57559a04c416e0.tar.gz
aur-packages-9f140581e08b255697a4d824ac57559a04c416e0.tar.xz
misc updates
Signed-off-by: Florian Pritz <bluewind@server-speed.net>
Diffstat (limited to 'vim/archlinux.vim')
-rw-r--r--vim/archlinux.vim26
1 files changed, 0 insertions, 26 deletions
diff --git a/vim/archlinux.vim b/vim/archlinux.vim
deleted file mode 100644
index 148bb93..0000000
--- a/vim/archlinux.vim
+++ /dev/null
@@ -1,26 +0,0 @@
-" The ArchLinux global vimrc - setting only a few sane defaults
-"
-" Maintainer: Tobias Kieslich [tobias funnychar archlinux dot org]
-"
-" 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