From 5593c643d5dbb3e132d8bb91f28493371c03a2a4 Mon Sep 17 00:00:00 2001 From: Jan Pokorný Date: Tue, 9 Apr 2013 14:23:24 +0200 Subject: Add configuration regarding (g)vim MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jan Pokorný --- .vimrc | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .vimrc (limited to '.vimrc') diff --git a/.vimrc b/.vimrc new file mode 100644 index 0000000..65ec2ff --- /dev/null +++ b/.vimrc @@ -0,0 +1,33 @@ +"set tabstop=4 +"set shiftwidth=4 +"set expandtab +set number + +set mouse=a + +"set autoindent +"set vb +highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE + +noremap :bprev +noremap :bnext + +" don't remember why temporarily off +filetype off + +call pathogen#infect() +call pathogen#infect('~/.vim/vim4projects') +call pathogen#helptags() + +" NERDTree +let NERDTreeIgnore = ['\.pyc$', '\.tar\.gz$'] + +filetype plugin indent on +syntax on + +" powerline +set laststatus=2 " Always show the statusline +set t_Co=256 " Explicitly tell vim that the terminal supports 256 colors + +" tagbar +nmap :TagbarToggle -- cgit