Guest User

Untitled

a guest
Mar 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. set nocp
  2. execute pathogen#infect()
  3.  
  4. filetype plugin indent on
  5. syntax on
  6. set tabstop=4
  7. set expandtab
  8. set ruler
  9. set shiftwidth=4
  10. set backspace=2
  11. set backspace=indent,eol,start
  12. set clipboard=unnamed
  13. set ignorecase
  14. set smartcase
  15. set incsearch
  16. set hlsearch
  17. set nowrap
  18. set number
  19.  
  20. if has('gui_running')
  21. set guifont=Consolas:h16
  22. set lines=40 columns=130
  23. set background=dark
  24. colorscheme monokai
  25. else
  26. colorscheme default
  27. let g:solarized_termcolors=256
  28. endif
  29.  
  30. map <F2> :NERDTreeToggle<CR>
  31.  
  32. "Airline
  33. set laststatus=2
  34.  
  35. :ab #b /****************************************
  36. :ab #e *****************************************/
  37.  
  38. set statusline+=%#warningmsg#
  39. set statusline+=%{SyntasticStatuslineFlag()}
  40. set statusline+=%*
  41.  
  42. let g:syntastic_always_populate_loc_list = 1
  43. let g:syntastic_auto_loc_list = 1
  44. let g:syntastic_check_on_open = 1
  45. let g:syntastic_check_on_wq = 0
Add Comment
Please, Sign In to add comment