From 2505dcd8cef270bf26c423089bcc999a2f469875 Mon Sep 17 00:00:00 2001 From: Valentin Gehrke Date: Wed, 28 Oct 2015 19:22:10 +0100 Subject: [PATCH] Vimrc cleaned up + Vundle --- vim/.vimrc | 122 ++++++++++++++++++++++------------------------------- 1 file changed, 50 insertions(+), 72 deletions(-) diff --git a/vim/.vimrc b/vim/.vimrc index a36858d..5c10871 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -1,78 +1,63 @@ set nocompatible +filetype off -" CL History -set history=700 +" init vundle +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() -set modelines=0 +" Let Vundle manage Vundle +Plugin 'VundleVim/Vundle.vim' -"Enable filetype plugins -filetype plugin on -filetype indent on +" My plugins +Plugin 'scrooloose/nerdtree' " FileBrowser on the left side +Plugin 'ervandew/supertab' "Auto completion +Plugin 'msanders/snipmate.vim' "Snippets +Plugin 'jeetsukumaran/vim-buffergator' "Easy buffer switching +Plugin 'ap/vim-templates' "File templates +Plugin 'godlygeek/tabular' "Tabularize -"Set to auto read if file is changed -set autoread - -"wildmenu -set wildmenu - -set wildignore=*.o,*~,*.pyc - -set gdefault +" End init vundle +call vundle#end() +filetype plugin indent on +" General configurations +set whichwrap+=<,>,[,] +set autoread "auto read file if changed +set wildmenu "Command completion +set gdefault " substitute all by default set noruler -set laststatus=2 - -"set cmdheight=2 - -set number - -set hid - -set backspace=eol,start,indent - -set incsearch - -set lazyredraw - -set magic - +set laststatus=2 " Add Status line always +set number "Show linenumbers +set backspace=eol,start,indent "Make backspace behave like it's supposed to +set incsearch "Search while typing pattern +set lazyredraw "No redrawing while running macros +set magic "Allow magic modelines set showmatch - set mat=2 - -set noerrorbells - +set noerrorbells "No visual nuisance set novisualbell - set t_vb= set tm=500 - -syntax enable - -colorscheme desert - -set encoding=utf8 - +set encoding=utf8 "Always use utf8 set ffs=unix,dos,mac - -set nobackup +set nobackup "Don't need a backup, I live on the edge set nowb set noswapfile - -set expandtab - +set expandtab "Tabbing set smarttab - -set shiftwidth=4 -set tabstop=4 - -set lbr -set tw=500 - set ai "auto indent set si "smart indent set wrap "wrap lines +set shiftwidth=4 +set tabstop=4 +set lbr +set tw=500 +set t_Co=256 +syntax enable +colorscheme desert + +" Leader commands let mapleader = "," nnoremap :noh @@ -82,51 +67,44 @@ nnoremap p :set invpaste paste? nnoremap a :Tabularize / vnoremap a :'<,'>Tabularize / nnoremap w vl +nmap s /\V -nmap :tabp -nmap :tabn -nmap f / -nmap F ? - +" Don't need a help inoremap nnoremap vnoremap +" Just a nuisance nnoremap q: +" No moving in insert mode allowed ino ino ino ino -nnoremap / /\V -vnoremap / /\V -nnoremap ? ?\V -vnoremap ? ?\V - -set whichwrap+=<,>,[,] - -" nnoremap :buffers:buffer +" Different use of undo nnoremap U +" We don't need useless whitespace at the of the line highlight WhitespaceEOL ctermbg=Red guibg=Red match WhitespaceEOL /\s\+$/ +" Rice set statusline=%m set statusline+=\ %f set statusline+=%= set statusline+=%l set statusline+=\ %c - hi StatusLine cterm=None ctermfg=green ctermbg=none hi Search cterm=NONE hi IncSearch cterm=underline ctermbg=none ctermfg=green -set t_Co=256 - "Supertab hi Pmenu ctermfg=green ctermbg=black hi PmenuSel ctermfg=white ctermbg=black hi PmenuSbar ctermfg=white ctermbg=black cterm=none - let g:SuperTabNoCompleteAfter = ['^',',','\s'] + +"NERDTree tabs +nmap e :NERDTreeToggle