Wednesday, December 7, 2016

.vimrc

filetype off call pathogen#infect() call pathogen#helptags() filetype indent on filetype on filetype plugin on syntax on set expandtab set nobackup set nowritebackup set noswapfile set lines=40 set columns=80 set tabstop=4 set shiftwidth=4 set softtabstop=4 set autoindent set smarttab map j map k map l map h set backspace=indent,eol,start set ruler set ignorecase set scrolloff=5 " Add mapping for NERD Tree file browser. map n :NERDTreeToggle let NERDTreeWinSize=40 " Dont use fancy arrows for NERD Tree let g:NERDTreeDirArrows=0 set wildignore+=*.pyc,*.orig let g:ackprg="ack-grep -H --nocolor --nogroup --column" nmap a :Ack! let g:pyflakes_use_quickfix = 0