--- /dev/null
+" set the runtime path to include Vundle and initialize
+set rtp+=$HOME/.vim/bundle/Vundle.vim
+call vundle#begin('$HOME/.vim/bundle/')
+
+Plugin 'VundleVim/Vundle.vim'
+Bundle 'thanthese/Tortoise-Typing'
+
+call vundle#end() " required
+filetype plugin indent on " required
+
+
+set backspace=2 " backspace in insert mode works like normal editor
+syntax on " syntax highlighting
+filetype indent on " activates indenting for files
+set autoindent " auto indenting
+set number " line numbers
+colorscheme desert " colorscheme desert
+set nobackup " get rid of anoying ~file
+
+let $LOCALFILE=expand("~/.vimrc_local")
+if filereadable($LOCALFILE)
+source $LOCALFILE
+endif
--- /dev/null
+#!/bin/sh
+
+./configure \
+--prefix=$PREFIX \
+--with-features=huge \
+--with-compiledby="ejannza" \
+--enable-multibyte \
+--enable-gui=gtk2 \
+--enable-luainterp \
+--with-lua-prefix=$PREFIX --with-luajit \
+--enable-gpm \
+--enable-cscope \
+--enable-fontset \
+--enable-fail-if-missing
+
+
+make
+make install prefix=$PREFIX/apps/vim