elhackerlibre

VIMFILE

Sep 20th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.82 KB | None | 0 0
  1. syntax on
  2. filetype off
  3. set nocompatible
  4. filetype plugin indent on
  5.  
  6. execute pathogen#infect()
  7. set rtp+=~/.vim/bundle/vundle
  8.  
  9. call vundle#begin()
  10. Plugin 'mattn/gist-vim'
  11. Plugin 'mattn/webapi-vim'
  12. Plugin 'gmarik/Vundle.vim'
  13. Plugin 'wikitopian/hardmode'
  14. Plugin 'scrooloose/nerdtree.git'
  15. call vundle#end()  
  16.  
  17. set nu!
  18. set ts =4
  19. color desert
  20. set showmatch
  21. set autoindent
  22. set shiftwidth =4
  23. let python_hightlight_all =1
  24.  
  25. set cursorline
  26. hi CursorLine cterm=none ctermbg=black  ctermfg=none
  27.  
  28. set statusline+=%#warningmsg#
  29. set statusline+={SyntasticStatuslineFlag()}
  30. set statusline+=%*
  31.  
  32. let g:syntastic_always_populate_loc_ilst=1
  33. let g:syntastic_auto_loc_list=1
  34. let g:syntastic_check_on_open=1
  35. let g:syntastic_check_on_wq=0
  36.  
  37. nnoremap <up> <nop>
  38. nnoremap <down> <nop>
  39. nnoremap <left> <nop>
  40. nnoremap <right> <nop>
Add Comment
Please, Sign In to add comment