summaryrefslogtreecommitdiffstats
path: root/filehooker/root-image/krebs/lib/vim
diff options
context:
space:
mode:
Diffstat (limited to 'filehooker/root-image/krebs/lib/vim')
-rw-r--r--filehooker/root-image/krebs/lib/vim40
1 files changed, 0 insertions, 40 deletions
diff --git a/filehooker/root-image/krebs/lib/vim b/filehooker/root-image/krebs/lib/vim
deleted file mode 100644
index b037a778..00000000
--- a/filehooker/root-image/krebs/lib/vim
+++ /dev/null
@@ -1,40 +0,0 @@
-# configure vim
-
-vimrc=${vimrc:-$HOME/.vimrc}
-
-vim_conf_sane_defaults(){
- # TODO - make stuff more modular?
- cat >>$vimrc<<EOF
-set nocompatible
-filetype plugin indent on
-syntax on
-set vb
-set foldenable
-set foldmethod=syntax
-set ignorecase
-set incsearch
-set showmatch
-set matchtime=3
-set hlsearch
-set backupdir=~/.vim/backup
-set directory=~/.vim/backup
-inoremap <F1> <ESC>
-nnoremap <F1> <ESC>
-vnoremap <F1> <ESC>
-set wildignore=*.o,*.obj,*.bak,*.exe,*.os
-cmap w!! w !sudo tee > /dev/null %
-colorscheme darkblue
-set background=dark
-set number
-set mouse=
-set shiftwidth=2
-set tabstop=2
-set et
-set sw=2
-set smarttab
-set autoindent
-set backspace=indent,eol,start
-set nocp
-EOF
- mkdir -p $HOME/.vim/backup
-}